diff --git a/README.md b/README.md index d22c653..24419da 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Options * -B _zoom_: Base zoom, the level at and above which all points are included in the tiles (default maxzoom). If you use -Bg, it will guess a zoom level that will keep at most 50,000 features in the densest tile. You can also specify a marker-width with -Bg*width* to allow fewer features in the densest tile to - compensate for the larger marker. + compensate for the larger marker, or -Bf*number* to allow at most *number* features in the densest tile. * -d _detail_: Detail at max zoom level (default 12, for tile resolution of 4096) * -D _detail_: Detail at lower zoom levels (default 12, for tile resolution of 4096) * -m _detail_: Minimum detail that it will try if tiles are too big at regular detail (default 7) @@ -97,6 +97,8 @@ Options * -r _rate_: Rate at which dots are dropped at zoom levels below basezoom (default 2.5). If you use -rg, it will guess a drop rate that will keep at most 50,000 features in the densest tile. + You can also specify a marker-width with -rg*width* to allow fewer features in the densest tile to + compensate for the larger marker, or -rf*number* to allow at most *number* features in the densest tile. * -g _gamma_: Rate at which especially dense dots are dropped (default 0, for no effect). A gamma of 2 reduces the number of dots less than a pixel apart to the square root of their original number. ### Doing more diff --git a/geojson.c b/geojson.c index 4ca5009..85c4916 100644 --- a/geojson.c +++ b/geojson.c @@ -1583,33 +1583,8 @@ int read_json(int argc, char **argv, char *fname, const char *layername, int max tile[z].fullcount++; - // Keep in sync with write_tile() - if (gamma > 0) { - if (tile[z].gap > 0) { - if (map[i].index == tile[z].previndex) { - continue; // Exact duplicate: can't fulfil the gap requirement - } - - if (exp(log((map[i].index - tile[z].previndex) / scale) * gamma) >= tile[z].gap) { - // Dot is further from the previous than the nth root of the gap, - // so produce it, and choose a new gap at the next point. - tile[z].gap = 0; - } else { - continue; - } - } else { - tile[z].gap = (map[i].index - tile[z].previndex) / scale; - - if (tile[z].gap == 0) { - continue; // Exact duplicate: skip - } else if (tile[z].gap < 1) { - continue; // Narrow dot spacing: need to stretch out - } else { - tile[z].gap = 0; // Wider spacing than minimum: so pass through unchanged - } - } - - tile[z].previndex = map[i].index; + if (manage_gap(map[i].index, &tile[z].previndex, scale, gamma, &tile[z].gap)) { + continue; } tile[z].count++; @@ -2105,12 +2080,15 @@ int main(int argc, char **argv) { case 'B': if (strcmp(optarg, "g") == 0) { basezoom = -2; - basezoom_marker_width = 1; - } else if (optarg[0] == 'g') { + } else if (optarg[0] == 'g' || optarg[0] == 'f') { basezoom = -2; - basezoom_marker_width = atof(optarg + 1); - if (basezoom_marker_width == 0) { - fprintf(stderr, "%s: Must specify marker width >0 with -Bg\n", argv[0]); + if (optarg[0] == 'g') { + basezoom_marker_width = atof(optarg + 1); + } else { + basezoom_marker_width = sqrt(50000 / atof(optarg + 1)); + } + if (basezoom_marker_width == 0 || atof(optarg + 1) == 0) { + fprintf(stderr, "%s: Must specify value >0 with -B%c\n", argv[0], optarg[0]); exit(EXIT_FAILURE); } } else { @@ -2154,6 +2132,17 @@ int main(int argc, char **argv) { case 'r': if (strcmp(optarg, "g") == 0) { droprate = -2; + } else if (optarg[0] == 'g' || optarg[0] == 'f') { + droprate = -2; + if (optarg[0] == 'g') { + basezoom_marker_width = atof(optarg + 1); + } else { + basezoom_marker_width = sqrt(50000 / atof(optarg + 1)); + } + if (basezoom_marker_width == 0 || atof(optarg + 1) == 0) { + fprintf(stderr, "%s: Must specify value >0 with -r%c\n", argv[0], optarg[0]); + exit(EXIT_FAILURE); + } } else { droprate = atof(optarg); } diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 6403b19..b134f9f 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -92,7 +92,7 @@ rather than a stream that can only be read sequentially. \-B \fIzoom\fP: Base zoom, the level at and above which all points are included in the tiles (default maxzoom). If you use \-Bg, it will guess a zoom level that will keep at most 50,000 features in the densest tile. You can also specify a marker\-width with \-Bg\fIwidth\fP to allow fewer features in the densest tile to -compensate for the larger marker. +compensate for the larger marker, or \-Bf\fInumber\fP to allow at most \fInumber\fP features in the densest tile. .IP \(bu 2 \-d \fIdetail\fP: Detail at max zoom level (default 12, for tile resolution of 4096) .IP \(bu 2 @@ -116,6 +116,8 @@ compensate for the larger marker. .IP \(bu 2 \-r \fIrate\fP: Rate at which dots are dropped at zoom levels below basezoom (default 2.5). If you use \-rg, it will guess a drop rate that will keep at most 50,000 features in the densest tile. +You can also specify a marker\-width with \-rg\fIwidth\fP to allow fewer features in the densest tile to +compensate for the larger marker, or \-rf\fInumber\fP to allow at most \fInumber\fP features in the densest tile. .IP \(bu 2 \-g \fIgamma\fP: Rate at which especially dense dots are dropped (default 0, for no effect). A gamma of 2 reduces the number of dots less than a pixel apart to the square root of their original number. .RE diff --git a/tests/muni/muni.json b/tests/muni/muni.json new file mode 100644 index 0000000..d756370 --- /dev/null +++ b/tests/muni/muni.json @@ -0,0 +1,4613 @@ +{ "Reproduced with permission granted by the City and County of San Francisco. The information has been provided by means of a nonexclusive, limited, and revocable license granted by the City and County of San Francisco.": true } + +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401225,37.789255 ] } } +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394607,37.794463 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405669,37.797055 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477197,37.765375 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477197,37.765375 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475107,37.720976 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475107,37.721262 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475096,37.72119 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.47721,37.765159 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477404,37.765375 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458721,37.748202 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453943,37.736692 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435387,37.723914 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271,37.791943 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409088,37.792122 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.42049,37.805785 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.42049,37.805785 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.41517,37.804544 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.41517,37.804544 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407819,37.78476 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407613,37.784778 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411506,37.794594 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411551,37.794585 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409088,37.792122 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409283,37.792023 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.42049,37.805785 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420684,37.806722 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.41517,37.804544 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.41517,37.804544 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407613,37.784778 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407819,37.78476 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411483,37.794594 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411551,37.794585 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386786,37.755387 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386924,37.755378 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386729,37.755396 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383051,37.755635 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866,37.772889 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395685,37.793731 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419252,37.775029 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395628,37.793651 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397969,37.772898 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419137,37.775082 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425802,37.719308 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425767,37.719371 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.43494,37.724654 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434757,37.724583 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425779,37.719362 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425802,37.719192 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396591,37.793027 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396385,37.793188 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393736,37.794221 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446577,37.720613 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393736,37.794221 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446806,37.720908 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446657,37.720827 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394618,37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394618,37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446577,37.720613 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446646,37.720845 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446738,37.720872 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394618,37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394618,37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446577,37.720631 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.40258,37.71236 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402374,37.71236 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387944,37.712791 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387715,37.713389 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387806,37.71412 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.47215,37.78455 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440748,37.71641 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388721,37.714389 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.24,37.82 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396044,37.78853 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.39722,37.7894 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391945,37.781827 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392232,37.781854 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393778,37.783291 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393469,37.782845 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.39653,37.7855 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396562,37.785318 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395325,37.784532 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395016,37.784095 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398109,37.786559 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401306,37.789067 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.40065,37.78862 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390697,37.780827 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390685,37.780622 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389786,37.772618 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40324,37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403269,37.727645 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.40746,37.72667 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.40766,37.72654 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439532,37.730312 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482263,37.790249 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445693,37.797606 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401093,37.798311 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.40184,37.80216 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402019,37.802978 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.40151,37.80055 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.40077,37.79686 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409161,37.806094 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461751,37.777396 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461969,37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464158,37.777289 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849,37.777173 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466038,37.777199 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466256,37.777065 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46817,37.777101 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468388,37.776967 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470313,37.777002 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470531,37.776868 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4727,37.77678 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475769,37.77676 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475987,37.776626 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477912,37.776662 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47813,37.776528 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480056,37.776563 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480273,37.776429 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48219,37.77647 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482417,37.77633 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484606,37.776356 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484296,37.77624 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487551,37.776222 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487769,37.776088 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489958,37.776114 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489912,37.775989 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491838,37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492056,37.77589 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494199,37.775791 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494577,37.775898 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497202,37.775781 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497419,37.775647 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500399,37.775637 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500617,37.775503 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50362,37.775484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503838,37.77535 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45886,37.77747 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510313,37.775186 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472227,37.776895 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472411,37.776788 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444798,37.801541 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445222,37.803629 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445176,37.803415 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444603,37.800622 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.44536,37.804343 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444982,37.802478 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400726,37.798543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.39858,37.79897 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397791,37.799086 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406345,37.797831 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.40396,37.798134 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436442,37.794131 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436278,37.794056 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408294,37.797591 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394289,37.789805 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.3967,37.79175 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443674,37.803629 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.43221,37.80513 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414125,37.807407 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423195,37.806375 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.44258,37.80378 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.41081,37.807841 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431181,37.736655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38899,37.76719 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38919,37.76658 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389189,37.766579 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38935,37.76781 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38863,37.76336 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38883,37.76269 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38846,37.76079 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.3887,37.76059 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38821,37.75817 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38845,37.75803 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.3879,37.75569 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.3881,37.75506 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38766,37.75313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.38786,37.75255 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387501,37.750337 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391559,37.73228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393185,37.779285 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3943,37.72567 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3942,37.7253 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.38772,37.7504 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.38705,37.74585 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39498,37.72416 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39488,37.7238 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387908,37.742682 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38815,37.74244 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399097,37.783998 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39541,37.72263 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3887,37.74089 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3887,37.74012 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400254,37.784945 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38926,37.73932 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39606,37.72119 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38912,37.73891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38913,37.73891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.39671,37.71977 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389803,37.737213 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389619,37.737927 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.40211,37.786373 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403439,37.787632 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39035,37.73541 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39048,37.73507 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390813,37.734135 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390928,37.734091 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721,37.734787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.39747,37.782704 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39146,37.73225 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39649,37.72078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39202,37.73067 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39237,37.73044 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392593,37.729238 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392776,37.729166 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39302,37.72791 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39328,37.72792 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389694,37.772966 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.39282,37.77529 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396602,37.778305 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.39279,37.77548 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401012,37.781804 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402548,37.783036 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404117,37.784259 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405675,37.785527 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394872,37.777064 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395135,37.777109 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394895,37.776894 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394746,37.77701 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.39857,37.77654 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.40357,37.78031 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.40205,37.77931 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.40475,37.78145 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.40474,37.78123 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.40665,37.78296 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.40665,37.78277 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.39716,37.77549 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464239,37.779171 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464044,37.779002 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463918,37.777146 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.46409,37.776985 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463803,37.775611 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464382,37.783216 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464526,37.783026 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.46448,37.784673 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.46371,37.77397 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464182,37.780876 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464354,37.780768 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.40424,37.77732 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741,37.756597 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46357,37.756767 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.46542,37.783133 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403367,37.773266 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407904,37.776864 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.40646,37.77573 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409222,37.777935 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410768,37.779175 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412395,37.780309 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401821,37.772034 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466704,37.784465 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465923,37.775183 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466095,37.775022 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465808,37.773639 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.46598,37.773478 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405901,37.771554 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407127,37.772536 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409922,37.774767 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408376,37.773536 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411755,37.776222 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413027,37.77724 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414597,37.778498 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404126,37.770161 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241,37.764288 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241,37.763913 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.46639,37.763797 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.46608,37.762093 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241,37.76204 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466149,37.760407 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465954,37.760237 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466022,37.758533 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465827,37.758364 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466345,37.76585 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466517,37.765689 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465884,37.756677 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465689,37.756508 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758,37.754804 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465551,37.754634 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465631,37.752939 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374286,37.823397 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452,37.824599 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370063,37.825196 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466502,37.752724 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466376,37.75086 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466547,37.750699 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466261,37.749325 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466432,37.749164 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.4113,37.769807 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41422,37.77212 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41381,37.77159 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.41263,37.77085 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.41227,37.77036 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.41573,37.77333 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.41538,37.77283 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.41732,37.77457 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416891,37.774038 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.41852,37.7755 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418575,37.775368 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371964,37.82841 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.47074,37.74887 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.4703,37.74503 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.4703,37.7434 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.47017,37.74317 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.47004,37.7416 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.47018,37.74153 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437213,37.767296 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429088,37.767768 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.42913,37.76767 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.43584,37.76738 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.43578,37.76728 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.43327,37.76751 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.43356,37.7674 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431105,37.76767 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431277,37.767536 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47217,37.75411 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47206,37.75268 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.47196,37.75081 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.47183,37.74891 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471297,37.743124 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471405,37.743069 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471192,37.741525 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.4713,37.741484 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470381,37.736387 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.42016,37.76668 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.47367,37.75811 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.4737,37.7593 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47351,37.75697 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.47361,37.7563 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.47368,37.75636 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47321,37.75425 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47309,37.7524 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.47295,37.75054 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409812,37.76572 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410328,37.765568 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428523,37.764579 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426156,37.764731 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426579,37.764575 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959,37.764853 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424256,37.76472 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412976,37.765523 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.41329,37.765377 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403802,37.765938 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.4196,37.765143 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.41928,37.76502 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419835,37.764983 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407669,37.765862 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407646,37.765701 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405515,37.765861 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415428,37.765374 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416048,37.765218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421746,37.764987 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422056,37.764849 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.40469,37.766039 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.4195,37.76513 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.47391,37.74698 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473707,37.746745 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.47374,37.74511 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.44768,37.76176 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4285,37.76281 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446702,37.761854 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.44898,37.76168 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434866,37.76252 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401451,37.764904 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401711,37.764771 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437489,37.762415 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403659,37.764808 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403441,37.764817 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403476,37.764817 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432991,37.762645 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399982,37.764991 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399284,37.764929 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388925,37.762992 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428195,37.76137 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428138,37.761245 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397352,37.76258 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435151,37.760952 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434842,37.760845 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.44354,37.760355 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.44349,37.76024 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437294,37.760702 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426236,37.761486 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425927,37.761388 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438154,37.760765 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423955,37.761619 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423646,37.761521 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441087,37.760586 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440778,37.760488 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390848,37.762874 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419509,37.761895 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444445,37.759792 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432688,37.761094 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432905,37.76096 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393471,37.762828 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39322,37.762732 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430464,37.761228 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430682,37.761094 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395422,37.762701 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.39516,37.762621 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421732,37.761762 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421423,37.761663 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47458,37.71953 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475051,37.725785 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.4749,37.719691 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474962,37.731175 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47472,37.73097 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475302,37.72111 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475004,37.72094 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475233,37.721074 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.47731,37.76368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.47704,37.76343 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472275,37.716889 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47318,37.71805 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47297,37.717323 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.47687,37.76158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.47711,37.7614 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.47671,37.76015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.47695,37.75995 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.47654,37.75786 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476782,37.757889 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477197,37.765214 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477404,37.765375 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.47669,37.75622 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.47642,37.75599 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47629,37.75412 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47653,37.75392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.47167,37.7162 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4751,37.73279 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4748,37.73212 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.47619,37.75272 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.4764,37.75206 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.47603,37.7504 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.47627,37.7502 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.4759,37.74853 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.47614,37.7483 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469618,37.714282 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469998,37.714443 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.47577,37.74667 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.47601,37.74647 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475203,37.734556 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974,37.734717 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.47567,37.74524 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.4759,37.74507 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.47554,37.74331 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.47578,37.74318 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.47543,37.74149 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.47568,37.74129 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.47528,37.7392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.47553,37.73901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.47542,37.73757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.47515,37.73734 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47468,37.72719 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474937,37.727017 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47588,37.73042 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476049,37.729997 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.47568,37.72887 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475945,37.726874 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47613,37.72634 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388753,37.760545 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388386,37.760465 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.39808,37.75996 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.39836,37.75987 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435966,37.757677 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437845,37.757561 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.40291,37.75968 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.40314,37.75956 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396443,37.760085 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.39643,37.75999 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.40223,37.75962 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.39545,37.76004 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.40388,37.75962 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.43901,37.75536 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480268,37.763679 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480106,37.761457 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.47998,37.759592 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479853,37.757754 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480372,37.765186 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479714,37.755898 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479611,37.754337 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38809,37.75801 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38851,37.75789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.39975,37.7573 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.3918,37.757771 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.39008,37.75787 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.39,37.75779 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.39397,37.75764 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393052,37.757585 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.39907,37.75727 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481482,37.763134 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481378,37.761608 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.48124,37.759735 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481113,37.75787 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481609,37.765026 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480986,37.756014 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.48086,37.75414 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436539,37.752698 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437387,37.75277 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402668,37.754448 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401694,37.75451 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.40494,37.75442 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405304,37.754298 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.40391,37.75448 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403631,37.754395 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.39856,37.75481 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409281,37.752853 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408971,37.752755 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427327,37.751778 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427545,37.751644 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248,37.75136 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433939,37.751262 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436184,37.751226 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436402,37.751092 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311,37.751903 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425265,37.751787 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438361,37.751102 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414242,37.75256 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413933,37.752462 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422767,37.752045 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422985,37.751911 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412054,37.752694 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411744,37.752587 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440504,37.750977 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418333,37.752321 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.41855,37.752178 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431773,37.751511 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40669,37.75299 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.42955,37.751645 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429768,37.751511 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416156,37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373,37.752311 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420556,37.752178 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.42051,37.752062 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484687,37.778284 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484492,37.778052 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.48456,37.776419 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484365,37.776187 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485102,37.784003 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.48485,37.783807 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484422,37.774554 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484227,37.774322 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484975,37.782147 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484712,37.781951 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485139,37.787536 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485356,37.787367 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484295,37.772689 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484837,37.780255 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484619,37.779925 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485241,37.785868 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485034,37.785689 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.39634,37.75236 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.39662,37.752242 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394832,37.7525 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44092,37.74931 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.41849,37.75067 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431659,37.749673 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40668,37.751407 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.39831,37.75224 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398293,37.752162 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.43363,37.74815 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.43352,37.74807 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.40015,37.75086 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400024,37.750753 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413877,37.749232 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417818,37.749001 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.43177,37.74827 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431636,37.748174 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401124,37.750718 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416065,37.749108 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.39866,37.75111 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.48611,37.73896 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.4878,37.74799 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487926,37.74808 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.4878,37.74636 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.48767,37.74616 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.48765,37.74451 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.48756,37.74427 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487545,37.742646 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.48743,37.74241 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.48739,37.74077 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426369,37.742159 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.42676,37.74204 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424026,37.742304 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424457,37.74217 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877,37.742435 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.42206,37.742435 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.42217,37.74231 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.43079,37.74188 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.4286,37.74202 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.42902,37.74191 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.49195,37.77668 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492442,37.783419 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492553,37.783429 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492335,37.781995 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492425,37.781802 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492296,37.779939 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493249,37.777861 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493077,37.777692 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492973,37.776032 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493133,37.775997 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493354,37.781537 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493515,37.781502 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493227,37.779815 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493388,37.779815 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493215,37.779548 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493376,37.779566 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495372,37.764557 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496621,37.76436 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497424,37.747621 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497308,37.745962 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.49747,37.74596 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502994,37.781087 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232,37.781007 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504139,37.779784 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798,37.775242 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505958,37.775206 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.50567,37.773573 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505831,37.773538 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506143,37.762375 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505971,37.762206 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506015,37.760519 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505843,37.76035 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505888,37.758655 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505716,37.758485 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505749,37.756781 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505577,37.756612 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.50611,37.764035 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.50627,37.764053 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505621,37.754925 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505449,37.754756 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505322,37.752829 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505482,37.752837 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505366,37.751187 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505194,37.751017 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505239,37.749331 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505067,37.749161 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.5051,37.747457 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504928,37.747288 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504973,37.745592 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504801,37.745423 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504834,37.743737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504662,37.743567 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504706,37.741854 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504534,37.741685 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504579,37.739998 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504407,37.739829 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.50444,37.738142 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504268,37.737973 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504141,37.736108 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506364,37.752783 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505366,37.736018 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50994,37.77991 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509411,37.779023 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386948,37.71213 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408404,37.784519 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408175,37.784162 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.40821,37.784011 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431009,37.737735 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432807,37.738172 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435716,37.740037 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433609,37.740001 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216,37.740189 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434433,37.740055 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.39422,37.70898 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.41325,37.73361 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.4669,37.71163 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.46717,37.711418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.46027,37.71013 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.41576,37.73253 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44237,37.71766 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44237,37.71766 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46226,37.71091 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469458,37.710359 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.42059,37.73229 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.46507,37.71183 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.46492,37.71164 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.50232,37.72974 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45678,37.80163 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45673,37.80161 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49303,37.77785 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483135,37.719886 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483306,37.717343 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483351,37.716334 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483215,37.71861 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483078,37.72076 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.46711,37.71166 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458645,37.777075 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459093,37.785596 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459254,37.78556 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.45907,37.783071 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956,37.78374 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458301,37.774425 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458955,37.781429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45876,37.781081 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458519,37.777477 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39804,37.75745 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.39789,37.75597 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.40496,37.71321 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402603,37.712217 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445946,37.764281 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446095,37.764298 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446805,37.762978 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446278,37.767154 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446851,37.769937 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446072,37.765298 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445877,37.765146 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446851,37.769161 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446656,37.76901 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4261,37.72465 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42846,37.72155 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42729,37.72311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377402,37.82695 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375421,37.824165 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375638,37.824468 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367796,37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.36893,37.823625 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366422,37.819939 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364883,37.822231 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366955,37.825319 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368295,37.82731 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369623,37.829265 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42422,37.72474 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42437,37.72474 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42342,37.72508 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.40451,37.72744 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.4047,37.72732 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.40648,37.72691 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.40667,37.7268 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471739,37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.40978,37.74183 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41067,37.74151 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40068,37.71202 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429531,37.737725 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.44007,37.734871 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434011,37.733595 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.43408,37.733488 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440093,37.735005 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435706,37.733925 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43597,37.733827 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.42794,37.733469 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429326,37.733487 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.42952,37.733318 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426702,37.733719 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431296,37.733211 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482617,37.788465 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186,37.792222 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39458,37.77998 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4094,37.74201 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4094,37.74286 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40932,37.74306 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46926,37.71248 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444938,37.749121 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445087,37.748077 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.46738,37.71251 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458921,37.713191 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459159,37.713152 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462331,37.713178 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455927,37.713222 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45618,37.713161 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39925,37.7319 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3994,37.73184 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39769,37.7332 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398068,37.779474 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39995,37.77795 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402231,37.776157 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40449,37.77438 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40708,37.77233 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40817,37.77146 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41045,37.76967 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4104,37.76549 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41054,37.7653 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41028,37.76422 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41041,37.76402 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4102,37.76187 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41004,37.76167 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41008,37.76058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40991,37.76038 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40993,37.75933 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40966,37.75911 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.4095,37.75751 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.40961,37.7574 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40942,37.75621 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40949,37.75572 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40919,37.75431 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40932,37.75415 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40907,37.75306 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40919,37.75252 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40907,37.7513 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40889,37.75111 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40891,37.74969 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40873,37.74951 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.41068,37.76845 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.41081,37.7681 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.41045,37.76967 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.41091,37.76911 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.41032,37.76314 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.41016,37.76294 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.42829,37.72162 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.42857,37.72166 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.43151,37.72314 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434654,37.724717 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.42748,37.72122 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.42776,37.72128 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.42699,37.7209 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.4299,37.72238 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433085,37.723958 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.42616,37.72052 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.40443,37.74472 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.40669,37.74133 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402614,37.712173 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406997,37.737729 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402614,37.712235 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.40558,37.73425 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402133,37.712244 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.40588,37.73488 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39936,37.71481 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40313,37.73028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40677,37.73986 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40712,37.73967 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39898,37.71497 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400071,37.713546 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403509,37.747123 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403783,37.711138 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406894,37.738701 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40523,37.74332 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40519,37.74288 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40472,37.733213 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404789,37.732963 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404812,37.732999 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40485,37.70909 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40102,37.7129 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40389,37.71062 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.43334,37.80343 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.43363,37.80487 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.4336,37.80542 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47686,37.72598 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47714,37.72597 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47881,37.72595 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47879,37.72587 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.48004,37.72691 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.48005,37.72717 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47913,37.72803 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.52323,37.83142 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527246,37.832584 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.5272,37.832477 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.50882,37.83302 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.50872,37.83296 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.51495,37.8318 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.51538,37.83175 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.39977,37.79131 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41658,37.78915 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41387,37.78944 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41496,37.7893 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402118,37.790924 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.43854,37.76867 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.44021,37.76773 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.43833,37.76883 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.43815,37.76685 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.4382,37.76681 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462292,37.785353 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46257,37.785178 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464939,37.785017 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464709,37.784902 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465432,37.784819 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466825,37.78463 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159,37.784665 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468963,37.784551 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470848,37.784586 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471103,37.784454 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475229,37.784386 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475501,37.784253 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478446,37.784241 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47871,37.784109 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481659,37.784097 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481893,37.783941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48482,37.78395 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485286,37.783808 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074,37.783798 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488456,37.783658 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490513,37.783671 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490087,37.783578 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459288,37.785703 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459036,37.785659 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443634,37.787738 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443384,37.78762 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399813,37.793296 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.39987,37.793144 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456835,37.786042 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456329,37.785974 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456321,37.785977 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397462,37.793589 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397749,37.79342 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.44087,37.788087 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440721,37.787954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.39614,37.79371 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151,37.788931 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.43392,37.78879 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398643,37.793438 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.39892,37.79327 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405958,37.792504 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405935,37.792379 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41756,37.791018 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417537,37.790902 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414121,37.791472 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414098,37.791347 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404273,37.792718 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.40425,37.792593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41889,37.790866 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41916,37.7907 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449957,37.786923 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.45026,37.786712 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415611,37.791285 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415749,37.791133 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455207,37.786248 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41098,37.791872 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410957,37.791747 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402908,37.792762 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402622,37.792931 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437484,37.788518 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436808,37.788455 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47325,37.784515 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764,37.784365 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420541,37.790661 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420828,37.790492 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.40942,37.792068 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.40934,37.791952 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446965,37.787265 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447,37.787185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400982,37.793145 ] } } +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401269,37.792975 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453281,37.786503 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517,37.786334 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435076,37.788792 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407552,37.792308 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407529,37.792184 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412321,37.791712 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608,37.791543 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42233,37.79037 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370139,37.818326 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369531,37.818504 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.36613,37.81992 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364196,37.820749 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47538,37.71904 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449804,37.765863 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450131,37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456561,37.765003 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456512,37.764932 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.45259,37.765495 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452928,37.765371 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39999,37.75734 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38354,37.73573 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38695,37.73585 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.38588,37.7366 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463975,37.775451 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507767,37.773421 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507985,37.773287 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.50983,37.77365 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509934,37.773321 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.41043,37.74842 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.40909,37.74845 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.40976,37.74823 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41398,37.74834 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41382,37.74815 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.4119,37.7484 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.41163,37.7482 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418369,37.748234 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415756,37.748305 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.44442,37.799837 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432863,37.801308 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057,37.801157 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442746,37.800051 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436176,37.800907 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436371,37.800738 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426568,37.80211 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212,37.80203 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428184,37.801905 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427852,37.801825 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431475,37.801486 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431406,37.80137 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.43746,37.80072 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429836,37.801691 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429503,37.801611 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439673,37.800443 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439341,37.800363 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441083,37.800265 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441278,37.800113 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424871,37.802333 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424894,37.802199 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434502,37.801103 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434697,37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434222,37.70887 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434336,37.708968 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435,37.709834 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432504,37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431381,37.710565 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42575,37.74202 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42582,37.74191 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.43233,37.7346 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.42579,37.7389 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.42894,37.73646 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429,37.73633 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.42775,37.73714 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.42792,37.73711 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.43191,37.73458 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425692,37.739929 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425498,37.739625 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.4302,37.73563 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.43028,37.73548 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47292,37.71331 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47278,37.7131 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47307,37.71482 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473135,37.715007 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47316,37.71407 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722,37.764621 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428609,37.764382 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4285,37.76281 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428416,37.761467 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427659,37.754785 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427497,37.7518 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42735,37.751591 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427073,37.746985 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426893,37.746781 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426585,37.743587 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426459,37.742222 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426528,37.742097 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427289,37.749388 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427122,37.749182 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426654,37.742811 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429167,37.769499 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087,37.769302 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429065,37.767821 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428881,37.767777 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428889,37.76729 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.4396,37.73038 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.43699,37.73132 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.43716,37.73139 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.45691,37.74984 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396996,37.795415 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463,37.791907 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.39902,37.795098 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405971,37.794263 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417899,37.792756 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414616,37.793173 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411,37.794477 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419589,37.792526 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416304,37.792959 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410823,37.793653 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.40277,37.794682 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420714,37.792385 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409774,37.79379 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401118,37.79482 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407561,37.794082 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412744,37.793363 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422913,37.792106 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.45839,37.75171 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455858,37.753074 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456178,37.751628 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455514,37.75368 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459105,37.783249 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45982,37.78309 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46257,37.78309 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46195,37.78299 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46479,37.783 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464331,37.782856 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466158,37.782798 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469,37.7828 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46837,37.7827 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47116,37.7827 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47097,37.78258 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47312,37.78249 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47397,37.78258 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47536,37.78239 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47671,37.78245 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47751,37.78229 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47984,37.78231 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47914,37.78222 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48152,37.78224 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48178,37.78209 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48367,37.78213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48524,37.78206 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4845,37.78197 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48688,37.78199 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48715,37.78185 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48903,37.78189 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48929,37.78175 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49061,37.78181 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49143,37.78166 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49223,37.78174 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49253,37.7816 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494397,37.781644 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446485,37.760863 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.44396,37.74689 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445,37.7467 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447779,37.766288 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.44794,37.766154 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445935,37.758793 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445866,37.758668 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446336,37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447917,37.76694 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444479,37.758383 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444319,37.758222 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447608,37.765405 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447757,37.765226 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47427,37.717443 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47443,37.717264 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474441,37.716015 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.40579,37.80266 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449212,37.761711 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449533,37.763263 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.44938,37.76313 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449911,37.76594 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.44996,37.76556 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449052,37.760926 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.4502,37.76683 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.45061,37.769456 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450771,37.769447 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44971,37.76477 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44978,37.76462 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450427,37.768528 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.41784,37.80551 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406897,37.798123 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406465,37.797626 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415136,37.803794 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414586,37.80341 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411605,37.801188 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416167,37.804517 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415973,37.804205 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408723,37.799386 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404307,37.796065 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.4043,37.79607 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405742,37.797319 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413531,37.802687 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413646,37.802598 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41266,37.802089 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417589,37.80549 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408602,37.79911 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414643,37.803285 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410356,37.8005 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410436,37.800384 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403682,37.79591 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341,37.753902 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397661,37.76498 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397785,37.764749 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397569,37.762614 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39741,37.76243 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39733,37.76115 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396402,37.752563 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396345,37.75143 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396517,37.751269 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.39622,37.750002 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396381,37.749868 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.48402,37.82952 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.48354,37.82944 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.48355,37.83309 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483291,37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434874,37.710182 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434828,37.709638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434588,37.709504 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463621,37.784882 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.41639,37.73909 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.41658,37.73904 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.41846,37.7393 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.41872,37.73931 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409746,37.739791 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4072,37.73954 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.41997,37.73992 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.41969,37.7397 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41455,37.73892 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414615,37.738829 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41366,37.739 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41343,37.73892 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.40781,37.739692 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.42267,37.74101 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.42251,37.74085 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.41199,37.73978 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.41211,37.73957 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420904,37.740294 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42093,37.7402 ] } } +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442841,37.7618 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442944,37.761648 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445327,37.759926 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445075,37.759908 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444147,37.757499 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013,37.754118 ] } } +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443,37.75399 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443414,37.752083 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443712,37.751682 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.44614,37.75894 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.4459,37.758659 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.44396,37.75085 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444044,37.761202 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444078,37.761327 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.43962,37.76208 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.44328,37.75641 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443425,37.756446 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441122,37.761711 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.44112,37.76161 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443815,37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444754,37.757794 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.44425,37.760542 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444479,37.76048 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440216,37.761898 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442795,37.755483 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.44283,37.755349 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421822,37.735074 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416725,37.734966 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942,37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419726,37.734966 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424056,37.735253 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414834,37.734867 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413586,37.734804 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413804,37.73467 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422567,37.735244 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424457,37.735423 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420127,37.735136 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418214,37.734895 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411169,37.735009 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411283,37.734911 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418626,37.735055 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447631,37.76092 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446634,37.760935 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475313,37.720218 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47594,37.7201 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446577,37.750388 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446198,37.751762 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49318,37.77223 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49288,37.7721 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49634,37.77208 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49557,37.77197 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49679,37.77192 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49798,37.77198 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50009,37.77189 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49991,37.77179 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50306,37.77177 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50363,37.77159 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50704,37.77159 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50631,37.77148 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458507,37.774372 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458003,37.774282 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.45007,37.77541 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.44929,37.77537 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510792,37.771421 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.50939,37.77134 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44627,37.7759 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446828,37.775675 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47218,37.77319 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47199,37.77305 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45324,37.775 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.45238,37.77499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454519,37.774756 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.45484,37.7748 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456355,37.798257 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453233,37.744356 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41509,37.78166 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41193,37.78207 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413999,37.781826 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.41833,37.78123 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42066,37.78095 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471533,37.719719 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463459,37.719988 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463642,37.719791 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469735,37.719737 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467937,37.719746 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465452,37.719613 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460938,37.781277 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461156,37.781045 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464159,37.781134 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464377,37.780902 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467644,37.780982 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467323,37.780777 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470601,37.780839 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470819,37.780607 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476045,37.780597 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476263,37.780365 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479266,37.780453 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479484,37.780221 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481398,37.780346 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482693,37.780078 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48461,37.78022 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484825,37.779979 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487806,37.780005 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488046,37.779862 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489972,37.779959 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49019,37.779727 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491943,37.779611 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4933,37.77969 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493227,37.779744 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493445,37.779798 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493399,37.779574 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496402,37.779671 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49662,37.779439 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500677,37.779473 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499829,37.779286 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502855,37.779651 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502775,37.779151 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506259,37.779043 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458737,37.781376 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458692,37.781153 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442965,37.782973 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449992,37.782242 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449911,37.782028 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455677,37.781528 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439366,37.783428 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439572,37.783178 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.43305,37.784391 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433313,37.784257 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.42289,37.78557 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425082,37.785434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416611,37.786351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413332,37.786769 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403656,37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41825,37.786137 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414971,37.786556 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427811,37.785033 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428155,37.784854 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41028,37.78717 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43558,37.76761 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43571,37.76742 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43557,37.76583 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43538,37.76561 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435254,37.764164 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43544,37.76427 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43508,37.76237 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934,37.760836 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435071,37.760747 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43491,37.75939 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43479,37.75916 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43477,37.75778 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434636,37.757632 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434465,37.755955 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434625,37.756098 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.43448,37.75464 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.43431,37.75441 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434156,37.752779 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434316,37.752895 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43401,37.7512 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434179,37.751253 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43404,37.74981 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43383,37.7496 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43596,37.76918 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43571,37.76895 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434053,37.751886 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248,37.752083 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435266,37.762397 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451377,37.748898 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437955,37.710209 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38695,37.74606 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38665,37.74577 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.38338,37.7439 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427254,37.769427 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469273,37.705764 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.39576,37.75376 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.39565,37.75374 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39656,37.7547 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39468,37.75268 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.3977,37.79363 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397532,37.792608 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40163,37.766056 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401516,37.764762 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401243,37.76221 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117,37.760934 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401026,37.759667 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400822,37.757437 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400571,37.754885 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401368,37.763504 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400867,37.758017 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4402,37.74693 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435762,37.740198 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.43668,37.73867 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.4369,37.7386 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.43566,37.74185 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.43574,37.74159 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439852,37.745239 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.43751,37.74363 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.43588,37.74029 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.43786,37.74359 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43638,37.75126 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436219,37.751075 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43621,37.74965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436059,37.749486 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43591,37.747889 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43607,37.747853 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435761,37.746292 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435922,37.746256 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435601,37.744686 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435762,37.74465 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435659,37.743249 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435487,37.74308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434468,37.738681 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434674,37.738262 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435841,37.747104 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.43599,37.747068 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434102,37.73339 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434309,37.733327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433839,37.73446 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433953,37.734469 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436162,37.748853 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.43599,37.748683 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.4363,37.7383 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.43593,37.73841 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.43535,37.741599 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.43726,37.73822 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435533,37.741617 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435476,37.74192 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435864,37.745641 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435693,37.745471 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.43463,37.7388 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.4346,37.73889 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.43444,37.73623 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.43433,37.73608 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434617,37.737342 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.43475,37.73731 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443319,37.801907 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443697,37.803772 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439996,37.786283 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440385,37.788184 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.4405,37.787988 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442941,37.800042 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440741,37.789977 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.44089,37.78997 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.43881,37.7805 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438976,37.780448 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.43907,37.78181 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.43923,37.78161 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443136,37.80097 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.43806,37.77677 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438243,37.776763 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439412,37.783375 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439526,37.78316 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436983,37.771329 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.4371,37.77105 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437739,37.775059 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437865,37.774889 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.44108,37.79154 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.4383,37.77786 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438415,37.777682 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443514,37.802844 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.43735,37.773185 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437487,37.773051 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440317,37.786997 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439813,37.785338 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439939,37.78515 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.41074,37.76934 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403152,37.76976 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403301,37.769894 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40773,37.71729 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649,37.729252 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44511,37.747925 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447539,37.748033 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43854,37.75112 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.43875,37.75352 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.39635,37.79398 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429408,37.769472 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.4294,37.769409 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.4337,37.76911 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.44141,37.7452 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.44304,37.74519 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.44029,37.74526 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.37313,37.728779 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45885,37.78389 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.4499,37.78462 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.45027,37.78437 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45174,37.78421 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45195,37.78402 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45666,37.78399 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45696,37.78386 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44827,37.78499 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44672,37.78538 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44664,37.78524 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45449,37.78412 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45475,37.78396 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.45351,37.78411 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.45374,37.78396 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428946,37.781919 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429141,37.781767 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438759,37.780546 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432236,37.7815 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432431,37.781348 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42427,37.782516 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424201,37.7824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415718,37.783478 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412428,37.783887 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41769,37.783353 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417357,37.783273 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414079,37.783682 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427296,37.782133 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427227,37.782017 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409402,37.78427 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435515,37.781081 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435709,37.780929 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419042,37.783184 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419019,37.783059 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437165,37.780876 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.43736,37.780724 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410789,37.784101 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420613,37.782988 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42059,37.782863 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41315,37.78488 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41427,37.78471 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.41145,37.78509 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278,37.806945 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.40603,37.806629 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397869,37.799552 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397434,37.798901 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388138,37.784359 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.40377,37.80519 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390104,37.791079 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389692,37.790481 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841,37.790749 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389898,37.790561 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393861,37.795105 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401113,37.803263 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401029,37.80296 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399369,37.801264 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.39892,37.800605 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391146,37.792686 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391066,37.792159 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.39278,37.79381 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392315,37.793775 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.39445,37.795 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.39557,37.79721 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.39616,37.79784 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.39662,37.79781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403314,37.805022 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410287,37.808351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.38832,37.7836 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.39567,37.797085 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395591,37.796685 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395181,37.796355 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438188,37.760631 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438039,37.759034 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437879,37.75741 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437902,37.755973 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.43773,37.755813 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437742,37.754367 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.43757,37.754215 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.43759,37.75279 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.43828,37.761594 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474744,37.731157 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474538,37.731041 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472442,37.730988 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387862,37.742628 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396886,37.749066 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397069,37.74903 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380797,37.73877 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381084,37.738761 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379252,37.737672 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384507,37.740699 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408,37.741949 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395879,37.747263 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257,37.747343 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382973,37.740003 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388309,37.742994 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388595,37.742977 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390531,37.744245 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.39384,37.745968 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.38264,37.73986 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382813,37.739717 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41679,37.73284 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41776,37.73281 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41893,37.73262 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41491,37.73471 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.43059,37.72475 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433577,37.726162 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.42899,37.72399 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.43219,37.72552 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392893,37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39476,37.71088 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.45904,37.74809 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.38179,37.73817 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434067,37.738333 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42302,37.77597 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.41634,37.72702 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.41653,37.72688 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.41874,37.7264 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.41851,37.72637 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.42028,37.72597 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.42046,37.72586 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422043,37.725598 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.42211,37.72543 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42324,37.7252 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.41457,37.7274 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524411,37.83048 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523264,37.831337 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.52767,37.82906 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.52345,37.83166 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436517,37.8024 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434842,37.794158 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434878,37.793805 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437127,37.804423 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436958,37.804447 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436229,37.801091 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469,37.800891 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436806,37.802817 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432329,37.781733 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432401,37.781523 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431955,37.779859 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432921,37.784733 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.43291,37.783984 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431369,37.776998 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431472,37.776859 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430537,37.772199 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430347,37.772033 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431197,37.776106 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431207,37.775598 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434556,37.792761 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434607,37.792386 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437389,37.805421 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435952,37.799707 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436051,37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431687,37.77854 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431762,37.778343 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436791,37.803547 ] } } +{ "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.430866,37.773759 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432627,37.783193 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432699,37.783019 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433565,37.788049 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433655,37.787717 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.4341,37.789925 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947,37.789744 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.43404,37.789577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433191,37.785994 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433268,37.785814 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432138,37.780204 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435489,37.797391 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389587,37.719921 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391453,37.720966 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.39332,37.722028 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394842,37.722895 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448765,37.729795 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448753,37.728492 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448948,37.73315 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448788,37.732989 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448776,37.731401 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448799,37.734194 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394188,37.787423 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396528,37.785746 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398753,37.783989 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400863,37.782152 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403099,37.780386 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405324,37.778629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407847,37.776641 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409773,37.775115 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411321,37.773894 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413729,37.771994 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414302,37.771735 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415667,37.768461 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41553,37.768461 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415245,37.76557 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415417,37.765231 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41528,37.76383 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914,37.762215 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086,37.761858 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41478,37.759 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414606,37.758815 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414332,37.755951 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414481,37.75546 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024,37.752757 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414208,37.752596 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414048,37.750999 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413842,37.750829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413854,37.749063 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.41379,37.74848 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.41359,37.74811 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.41362,37.74687 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4133,37.73888 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41337,37.7388 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41365,37.73494 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41372,37.73483 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391859,37.789269 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.41352,37.73605 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.41364,37.73579 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41349,37.7471 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.41336,37.74532 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.41345,37.74521 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.41344,37.73718 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.41352,37.73716 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482151,37.72176 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.48254,37.72184 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473169,37.715213 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474292,37.715899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474578,37.715899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758,37.716782 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477076,37.717701 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479607,37.719601 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47998,37.71963 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480902,37.72068 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.44166,37.75075 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457635,37.766047 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446691,37.767261 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446462,37.767145 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447917,37.7671 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453257,37.766413 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454908,37.766208 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454701,37.766092 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393763,37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.39497,37.78919 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395929,37.789948 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871,37.789877 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398151,37.791645 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393449,37.794052 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.39345,37.7939 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.53867,37.83238 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432185,37.805118 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46198,37.77394 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46125,37.77384 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46411,37.77367 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463837,37.773532 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466049,37.77347 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465739,37.773318 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46839,37.77335 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46761,37.77325 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47053,37.77326 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46982,37.77318 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47492,37.77305 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47419,37.77295 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476776,37.772959 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47683,37.77283 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47917,37.77286 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47846,37.77275 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48134,37.77276 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48061,37.77266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48452,37.7726 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4838,37.77251 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48726,37.77251 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48717,37.77235 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48941,37.7724 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48919,37.77224 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447286,37.782152 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472423,37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472676,37.780526 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408391,37.787401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446805,37.782509 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445934,37.782322 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437761,37.783847 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437669,37.783624 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453075,37.781849 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453258,37.781599 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456434,37.78126 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541,37.782795 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406488,37.787642 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411681,37.786983 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420635,37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431021,37.784641 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431353,37.784489 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466151,37.770436 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468925,37.770534 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475024,37.807561 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474897,37.807463 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475585,37.80608 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475872,37.806668 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475046,37.806571 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475241,37.807231 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510284,37.767879 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510456,37.76737 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.50755,37.74544 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506821,37.735482 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395415,37.722458 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388272,37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729,37.72035 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393595,37.721413 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433416,37.732525 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433855,37.732401 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475633,37.719102 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475907,37.716693 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477167,37.715979 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451205,37.729955 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451216,37.731419 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42819,37.71187 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42829,37.71174 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426766,37.711109 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42627,37.71108 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42576,37.71072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.446999,37.720008 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447136,37.719861 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219,37.72105 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446761,37.720702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.44723,37.720863 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42434,37.71004 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42443,37.70982 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.41823,37.7079 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.41841,37.7077 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443554,37.718927 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443554,37.718722 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.45118,37.72312 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.42215,37.70898 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422129,37.708984 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44526,37.720069 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.37711,37.73004 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403976,37.791004 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404364,37.792878 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404741,37.794699 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403461,37.788203 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405027,37.796126 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211,37.807182 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405267,37.797331 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.40455,37.79377 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724,37.789746 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.37527,37.72988 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.48498,37.70913 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485294,37.709312 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485148,37.714567 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485354,37.71487 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485114,37.714772 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.48489,37.72423 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485001,37.718698 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485207,37.718422 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.48527,37.71153 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485513,37.711203 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486404,37.729628 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.48629,37.729441 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.48434,37.72606 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510244,37.775008 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509991,37.773214 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.51006,37.773214 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.50984,37.77169 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422083,37.806348 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417415,37.783228 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417106,37.781693 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545,37.778901 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.41696,37.78076 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416865,37.780569 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417792,37.785084 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464086,37.758605 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463879,37.758471 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465804,37.758524 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46605,37.75839 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46793,37.7584 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46812,37.75824 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47008,37.7583 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47003,37.7582 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47227,37.75913 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47269,37.75916 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.41529,37.78922 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.41567,37.79109 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.41604,37.79295 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4147,37.78643 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.41638,37.79465 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.41453,37.7855 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.41548,37.79015 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.41488,37.78736 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.41586,37.79206 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097,37.788322 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.41622,37.79382 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499592,37.785015 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.49969,37.78498 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450072,37.798177 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45709,37.74537 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45718,37.74529 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461346,37.751119 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445363,37.720283 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.42176,37.70866 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449979,37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.45007,37.721978 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437587,37.714768 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438034,37.715143 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.44108,37.716714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440874,37.716473 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441172,37.716509 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.43303,37.712948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433957,37.713332 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436042,37.714251 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435961,37.714028 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439305,37.715714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439614,37.715679 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431805,37.712832 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415534,37.706939 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446978,37.720961 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446761,37.720702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419954,37.708368 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354,37.708484 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420022,37.708207 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446606,37.720567 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446608,37.720565 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447768,37.746667 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425771,37.791041 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46213,37.72005 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45498,37.72007 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45929,37.719953 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46012,37.72007 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457251,37.719962 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453,37.72008 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461329,37.719952 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.45421,37.71999 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45806,37.72006 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456232,37.719962 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481473,37.715978 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478323,37.715845 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480098,37.715006 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.4368,37.79599 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423306,37.777748 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426324,37.777382 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.42495,37.77756 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419743,37.778188 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.44043,37.75504 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.44115,37.75405 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.44257,37.75249 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.44246,37.7523 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.44282,37.75084 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.44274,37.7507 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.44261,37.74926 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.44253,37.74907 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.44251,37.74852 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442635,37.748229 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375254,37.829848 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377217,37.828181 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373477,37.82982 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4159,37.71201 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416047,37.712025 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415222,37.713399 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440261,37.770928 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427058,37.772612 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427321,37.772434 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440548,37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442954,37.770437 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44355,37.770508 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448467,37.769893 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448662,37.769714 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450782,37.769598 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450794,37.769438 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437373,37.771293 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436743,37.771231 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.43076,37.77214 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430198,37.772069 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553,37.773183 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425843,37.772764 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44535,37.77021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445671,37.77025 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445155,37.770169 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424192,37.772969 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433637,37.771775 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433854,37.771605 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452845,37.769331 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453075,37.76917 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407218,37.752826 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392928,37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395451,37.784193 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397676,37.782436 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399913,37.780671 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402137,37.778914 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404362,37.777148 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406438,37.775498 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408513,37.773866 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410371,37.772403 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388776,37.789454 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390611,37.78801 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390012,37.719198 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447567,37.7738 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447314,37.773737 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441501,37.774573 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441259,37.774509 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837,37.774783 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439597,37.77472 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428274,37.776261 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427555,37.776244 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444298,37.774195 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515,37.77409 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449166,37.773605 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449464,37.773417 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450853,37.773374 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451098,37.773251 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438181,37.774992 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437405,37.775 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431561,37.775838 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430834,37.775804 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421667,37.777099 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423326,37.776893 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416852,37.777709 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426146,37.77653 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442634,37.774427 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442862,37.77429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446513,37.773932 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445679,37.773946 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434443,37.775472 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434177,37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436458,37.775211 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436253,37.775146 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452502,37.77317 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452756,37.773042 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454148,37.77296 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453881,37.772898 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433203,37.775627 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432476,37.775627 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42019,37.777286 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429879,37.776056 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.42919,37.776035 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499212,37.731604 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429929,37.770307 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429701,37.770248 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.45472,37.80173 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.45451,37.801862 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454899,37.801077 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454349,37.803763 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.45453,37.80369 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363371,37.810505 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.36339,37.81038 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.40845,37.72628 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.4085,37.72614 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.40763,37.72402 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.40812,37.72522 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.40798,37.72507 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.44089,37.75401 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.44074,37.75241 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440561,37.75103 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471797,37.72161 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47433,37.72133 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472954,37.721592 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472713,37.721485 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45028,37.72193 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45164,37.71978 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4511,37.72063 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388701,37.740309 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.38305,37.73469 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.38353,37.73596 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.37991,37.732497 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692,37.73239 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.38412,37.7377 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.38416,37.73759 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.38628,37.73896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.38654,37.739 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381845,37.733319 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.38212,37.733355 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39861,37.7866 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40083,37.78484 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391101,37.792338 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391227,37.792418 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.39352,37.79041 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392534,37.791401 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.39256,37.79117 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.4201,37.804795 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420261,37.804777 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418578,37.796496 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418395,37.796345 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420615,37.806686 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420535,37.806642 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.41747,37.79111 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.4197,37.80284 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419883,37.802912 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.41784,37.79287 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419162,37.800173 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419334,37.800208 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415135,37.779364 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419494,37.801011 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419322,37.800993 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418784,37.798308 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418956,37.798343 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418189,37.794542 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419562,37.801912 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419665,37.801859 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415421,37.780783 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420272,37.805633 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420455,37.805705 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4182,37.7954 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418361,37.795354 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.4173,37.79017 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.41763,37.79183 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.42121,37.80703 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415799,37.782648 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418979,37.799236 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419139,37.799182 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.41863,37.79744 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418773,37.797406 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406539,37.738148 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.40678,37.737943 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.40373,37.73879 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40101,37.73955 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40305,37.73913 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371871,37.729878 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372134,37.729869 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.37376,37.730941 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374035,37.730932 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375614,37.732004 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.37588,37.73199 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377229,37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377172,37.732709 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.37934,37.73409 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.38034,37.73058 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380023,37.73347 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.37984,37.7333 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.37953,37.73402 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3846,37.72837 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38563,37.72735 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38572,37.72711 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386685,37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38677,37.72611 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389212,37.717012 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.390998,37.718039 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370199,37.729136 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458643,37.764441 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460824,37.764299 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461061,37.764226 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464034,37.764155 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464282,37.764092 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466165,37.764106 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458024,37.764366 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495342,37.716241 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.49539,37.71607 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.49655,37.71653 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.4965,37.71643 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49777,37.717007 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49766,37.71677 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500028,37.718996 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499913,37.718738 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47238,37.71775 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.47126,37.71355 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471324,37.710707 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47191,37.71463 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.47226,37.71957 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471674,37.731363 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471858,37.731238 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.47099,37.71091 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471675,37.734307 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444362,37.791281 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444246,37.791186 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431202,37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440888,37.791724 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441307,37.791565 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434676,37.792529 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424598,37.793812 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42621,37.79358 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994,37.79464 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418293,37.794605 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414842,37.795041 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41963,37.79441 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416366,37.794854 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.4295,37.79315 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411712,37.79545 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.42786,37.79336 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.42129,37.79419 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447365,37.790902 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.43924,37.791932 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612,37.791772 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436109,37.79235 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.43632,37.792201 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413202,37.795255 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422959,37.794044 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423372,37.793963 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025,37.792716 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.43339,37.79266 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47874,37.71796 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478427,37.718691 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285,37.728421 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451228,37.728296 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443892,37.804557 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413357,37.808594 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415514,37.80832 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391416,37.739846 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392973,37.7409 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392916,37.740694 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394931,37.742087 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691,37.741704 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396787,37.743302 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396936,37.742775 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406479,37.782645 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417366,37.807248 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.41325,37.78686 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.41344,37.78781 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.41361,37.78869 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.47174,37.71411 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462001,37.762299 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462849,37.762397 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46435,37.762334 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464144,37.762201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466688,37.762227 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466312,37.762139 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469324,37.762069 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469526,37.761988 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472777,37.761848 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473781,37.761913 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476825,37.76174 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477194,37.761655 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479855,37.761534 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481164,37.761547 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4833,37.761452 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48356,37.761373 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48651,37.76131 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486763,37.761232 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489719,37.761172 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4895,37.761105 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49293,37.761028 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493199,37.760955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499359,37.760743 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499154,37.760679 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502574,37.760598 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502839,37.760518 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505832,37.760493 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506064,37.760392 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459,37.760357 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508135,37.760269 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329,37.762075 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470572,37.76195 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509011,37.760363 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509075,37.76034 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508777,37.76017 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495565,37.760912 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495964,37.760828 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617,37.76482 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402485,37.75443 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402223,37.751887 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402121,37.750834 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.40346,37.76356 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38101,37.73862 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386634,37.732581 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386611,37.732367 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389872,37.77972 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38955,37.7796 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38994,37.7798 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389824,37.779621 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036,37.776323 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394231,37.776207 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394364,37.776058 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397809,37.773121 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.37939,37.73108 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461048,37.75095 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042,37.747256 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458836,37.748327 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458951,37.748175 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458939,37.748157 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458951,37.748175 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456407,37.743999 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45663,37.74415 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45867,37.74711 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.46355,37.7549 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463798,37.754652 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.45548,37.74311 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455776,37.743473 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45816,37.74602 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431418,37.801513 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.43123,37.80135 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425465,37.772933 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.42627,37.776752 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494615,37.781653 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.45656,37.80177 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482457,37.788393 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469059,37.801789 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.45632,37.80158 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472237,37.806928 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472111,37.806732 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.45473,37.80101 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480968,37.792088 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480922,37.792311 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277,37.801022 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442735,37.798882 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442861,37.799078 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.43613,37.799711 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435958,37.799881 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40807,37.8035 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408039,37.803381 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.40651,37.8037 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406525,37.803559 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.43101,37.80057 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.43121,37.80037 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.44716,37.798543 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447137,37.798418 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439421,37.799292 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439192,37.799542 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.40963,37.80328 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4402,37.71618 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.3814,37.73077 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38479,37.73298 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.38172,37.73137 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44935,37.72163 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45013,37.72039 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451849,37.799382 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.45172,37.79922 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46014,37.76612 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46246,37.76618 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461887,37.766047 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464603,37.766091 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464007,37.765957 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466746,37.766001 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46623,37.765859 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468889,37.765903 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46871,37.76575 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473221,37.765715 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47305,37.76556 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475421,37.765616 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47524,37.76546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47774,37.7655 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47761,37.765526 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479696,37.765428 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479489,37.765285 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481839,37.765329 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481632,37.765195 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483993,37.765221 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483363,37.765105 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486136,37.765131 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485506,37.765016 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267,37.765032 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488714,37.764881 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490422,37.764943 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492565,37.764844 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491934,37.764728 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494708,37.764754 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507405,37.764186 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457956,37.765984 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471032,37.765813 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47086,37.76565 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510052,37.764131 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.50957,37.763926 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431331,37.730641 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447183,37.797151 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.45711,37.74781 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393337,37.790581 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393577,37.790844 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394964,37.791982 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.39567,37.79253 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403067,37.721096 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403124,37.720926 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408886,37.719581 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409058,37.719376 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404098,37.720677 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404338,37.720766 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406916,37.720098 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407088,37.719892 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414464,37.718119 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414258,37.718039 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418804,37.718897 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418633,37.718718 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401154,37.721443 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401394,37.721541 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405094,37.720418 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405323,37.720516 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411257,37.718957 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41136,37.71877 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411825,37.797208 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412009,37.797351 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.40951,37.78507 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.41258,37.800965 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412729,37.800902 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412775,37.801929 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412924,37.80183 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412203,37.7991 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412352,37.79902 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411516,37.795709 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411666,37.795602 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411619,37.7962 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411769,37.79612 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412397,37.800037 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412546,37.799974 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.41202,37.798199 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412192,37.798243 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411059,37.794504 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462238,37.803048 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462226,37.802905 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595,37.803592 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466801,37.803476 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456814,37.803914 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456275,37.803852 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457995,37.803807 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457766,37.803691 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.42521,37.779384 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.42553,37.77948 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413083,37.781077 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.44152,37.77744 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.44185,37.77731 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.43991,37.77764 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.44016,37.77752 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44476,37.77694 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.43822,37.77786 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.43851,37.77773 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.43207,37.77864 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.4314,37.77862 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42386,37.77969 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42369,37.77961 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41569,37.78073 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41587,37.78061 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41741,37.78051 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.42671,37.77933 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.42695,37.77919 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.43493,37.77827 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.43519,37.77815 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.41901,37.78031 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.4187,37.780168 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42071,37.78009 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420144,37.77999 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.4305,37.77885 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.4296,37.77886 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467076,37.80179 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466927,37.801602 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467305,37.799835 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475882,37.803956 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476008,37.80376 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.36483,37.812 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369859,37.812036 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.3709,37.81324 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42079,37.77177 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407695,37.784199 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447127,37.720988 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419193,37.775069 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437768,37.731668 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.43726,37.7315 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439635,37.731668 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439853,37.731516 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441915,37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133,37.731508 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444607,37.731642 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443977,37.731508 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446474,37.731633 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446692,37.731481 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461502,37.73008 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085,37.730695 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449166,37.731615 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448536,37.731481 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451239,37.731472 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451445,37.731615 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461857,37.729972 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457322,37.731115 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457654,37.730874 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453289,37.731615 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453083,37.731472 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460426,37.730553 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46455,37.732283 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463965,37.732033 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455649,37.731445 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455832,37.731267 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.45177,37.71969 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.45094,37.71937 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446657,37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446657,37.720845 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450712,37.738182 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450884,37.7382 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453794,37.736736 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451491,37.737816 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451732,37.737727 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450357,37.739244 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450529,37.739226 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.44329,37.80285 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420226,37.805803 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420467,37.805633 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417405,37.806168 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417176,37.806052 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.4079,37.80735 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407612,37.807254 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.42189,37.80559 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422106,37.805411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41424,37.80656 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41346,37.806524 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423987,37.805313 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423494,37.805241 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.41038,37.80704 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410594,37.80688 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425111,37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4352,37.7155 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437347,37.712457 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437989,37.711797 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43002,37.72251 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438504,37.711083 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43356,37.71767 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43597,37.71445 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436397,37.714153 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43476,37.7161 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436626,37.713457 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436786,37.713484 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43241,37.7192 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437897,37.711672 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.38598,37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386049,37.733 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384858,37.733044 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385052,37.733196 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391522,37.736304 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392175,37.735796 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392737,37.735171 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363782,37.811692 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.44329,37.71689 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43181,37.75133 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.50214,37.836443 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.50241,37.83612 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.49402,37.83388 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.49401,37.83361 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541,37.734174 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379321,37.737011 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379505,37.736521 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379323,37.735164 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.37947,37.73502 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.38317,37.7437 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38513,37.74055 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.3837,37.74254 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.38393,37.74253 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.38444,37.74106 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.38464,37.74113 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504106,37.781827 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505528,37.782139 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461458,37.737744 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461309,37.737869 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460083,37.739377 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460026,37.739199 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459224,37.740082 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45927,37.740207 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460804,37.735505 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39646,37.76141 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39633,37.76013 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395997,37.758398 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.39612,37.75812 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.39575,37.75727 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.3957,37.75683 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.39574,37.75551 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.3958,37.75546 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.39749,37.78992 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40024,37.78775 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39985,37.78787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40157,37.78651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40249,37.78597 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40393,37.78464 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40452,37.78436 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40654,37.78259 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40664,37.782725 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40831,37.78119 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4091,37.78075 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41135,37.77897 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41355,37.77723 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41273,37.7777 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41431,37.77645 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41518,37.77594 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41712,37.774216 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417292,37.774306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41978,37.77047 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41993,37.76862 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42002,37.7678 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41979,37.76714 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41986,37.7662 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419668,37.765125 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419726,37.765 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419348,37.762635 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463,37.761761 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41917,37.76066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41925,37.7598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41902,37.75911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41909,37.75817 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.41887,37.75751 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.41895,37.75659 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.41871,37.75582 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.4188,37.75517 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.41856,37.75428 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.41863,37.75343 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41841,37.75273 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418528,37.751964 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4181,37.74951 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41818,37.74857 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42064,37.74429 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42113,37.74381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421819,37.742435 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422,37.74244 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428,37.73217 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.4522,37.70889 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.44264,37.71448 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4404,37.71715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423871,37.738867 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42404,37.73899 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395916,37.791144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.42682,37.73334 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.42683,37.73334 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43481,37.72454 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422759,37.741052 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42292,37.741008 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.45653,37.70741 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43351,37.726355 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41959,37.74592 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.45906,37.70682 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44462,37.71285 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.43365,37.72635 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.39695,37.79015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441149,37.716455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782,37.716642 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.45708,37.70736 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.44475,37.71251 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423963,37.737448 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4242,37.73706 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439087,37.71915 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439259,37.71865 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45087,37.7095 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.44569,37.71172 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532,37.711468 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.39493,37.791965 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44265,37.7147 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.42592,37.73404 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.43519,37.72431 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.45006,37.70962 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437483,37.721282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43568,37.72338 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41882,37.74711 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4191,37.74694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42442,37.73591 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4247,37.73562 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437117,37.721469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.43633,37.72281 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166,37.706113 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4599,37.70636 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45332,37.70866 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4313,37.72862 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431412,37.728696 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418599,37.773324 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.39435,37.79239 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.42927,37.73066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.42971,37.73045 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.4203,37.74508 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.44834,37.71048 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.44845,37.71022 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391467,37.792712 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435435,37.71094 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43295,37.71293 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438241,37.711155 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365447,37.72792 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432189,37.736834 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.45923,37.79794 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.45897,37.79773 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.46024,37.79843 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399138,37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401306,37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403519,37.787525 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209,37.787712 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404586,37.786597 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405893,37.785652 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406834,37.78484 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408141,37.783886 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408657,37.783395 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4104,37.782102 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411329,37.78129 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413186,37.77981 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412613,37.780363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414826,37.778606 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41634,37.77741 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4314,37.76569 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43366,37.76391 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407992,37.784082 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412441,37.780568 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399069,37.79111 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397016,37.792572 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426149,37.769786 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429042,37.767348 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428628,37.767829 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.42915,37.767259 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444055,37.758409 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435781,37.762299 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449,37.76246 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.43539,37.76246 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43538,37.76262 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427103,37.76888 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396178,37.793473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396127,37.793494 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.39815,37.79192 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421768,37.773269 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421991,37.772875 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40516,37.78639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424971,37.77057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414379,37.779105 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.40342,37.78764 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.40337,37.78773 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213,37.777589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416236,37.777598 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424666,37.770953 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396627,37.792984 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.40964,37.78285 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.40248,37.78849 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402163,37.788613 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432812,37.764489 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433323,37.763958 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.40731,37.78468 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400411,37.790156 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430707,37.766185 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.43114,37.765689 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419321,37.775056 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.39491,37.79426 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405744,37.785857 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410228,37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419183,37.775243 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450541,37.753618 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42762,37.72136 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42647,37.7229 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43113,37.71669 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43366,37.71331 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4323,37.71513 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42876,37.719823 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444846,37.767511 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.44658,37.7759 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.44636,37.77571 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44674,37.77757 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446908,37.77754 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.44728,37.78213 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447573,37.782144 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445407,37.770089 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.44542,37.77031 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445304,37.770348 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446049,37.77406 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.44624,37.77402 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445625,37.771963 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.44573,37.77173 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447,37.778771 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.44716,37.77876 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.53238,37.83183 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530858,37.831876 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.53626,37.83178 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.45899,37.8002 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.45913,37.80013 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46036,37.79853 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429168,37.767194 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414813,37.778542 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435231,37.76262 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396549,37.793003 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458623,37.748351 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401925,37.788702 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43148,37.74668 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43132,37.74654 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43134,37.74519 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43117,37.74493 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43117,37.74354 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43104,37.7433 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43101,37.74201 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47312,37.75526 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48088,37.75397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482773,37.754042 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483014,37.753881 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48385,37.75398 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485168,37.753782 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993,37.753898 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48731,37.753692 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201,37.753754 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489453,37.753593 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49028,37.75375 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49161,37.75348 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492432,37.753619 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49265,37.753458 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496717,37.75343 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498012,37.753215 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498848,37.753331 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166,37.753125 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501002,37.753241 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502309,37.753026 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503569,37.753124 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504451,37.752936 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505712,37.753034 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505574,37.752891 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507854,37.752934 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495056,37.753493 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495422,37.753332 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.37448,37.73025 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377013,37.730978 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.37896,37.73163 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41131,37.74007 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41141,37.73992 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4113,37.74123 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.42195,37.775063 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40307,37.7419 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403341,37.741885 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381367,37.729384 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379318,37.728223 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382684,37.730152 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454212,37.723431 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561,37.728285 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467871,37.728383 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446749,37.722951 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43867,37.72367 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43853,37.72357 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451448,37.72304 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450866,37.722947 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46676,37.727252 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059,37.724957 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464072,37.726008 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45321,37.7232 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449784,37.723022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.44929,37.72286 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471686,37.730952 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46139,37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.453999,37.723459 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454217,37.723451 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435731,37.723941 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458077,37.724387 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458306,37.724262 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44132,37.72336 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44124,37.72326 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43589,37.72382 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45243,37.723085 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444971,37.722857 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444951,37.723004 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.4444,37.7229 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469097,37.729989 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469475,37.729945 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464337,37.726029 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.46648,37.727199 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405629,37.786642 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415774,37.785369 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41252,37.7858 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417998,37.785093 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414445,37.785538 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41065,37.78604 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.41916,37.78496 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408128,37.786331 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421415,37.784657 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.48383,37.83592 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455411,37.755304 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456224,37.751494 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454391,37.751343 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453073,37.75128 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452271,37.751298 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462585,37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465631,37.752778 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466479,37.752885 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507509,37.750927 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450678,37.744481 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446027,37.741385 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44597,37.741082 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443301,37.736611 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443782,37.736478 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451308,37.744999 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.42031,37.77073 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41917,37.77281 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406735,37.796984 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.4182,37.79555 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418395,37.795381 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41491,37.79596 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415105,37.795791 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405222,37.79717 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419863,37.795328 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420035,37.795149 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416549,37.795755 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416744,37.795586 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411619,37.796378 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814,37.796209 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403582,37.797393 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.42148,37.795114 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.42125,37.794998 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409991,37.796556 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410175,37.796405 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402367,37.797544 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408329,37.796788 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.41327,37.796165 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413465,37.795995 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42313,37.7949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422901,37.794784 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.42096,37.77419 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422524,37.77403 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.42417,37.773811 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390825,37.734019 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390859,37.73385 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380189,37.727982 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381425,37.728679 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400547,37.739529 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.38273,37.72942 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383578,37.729733 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385146,37.730795 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.38542,37.73082 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387046,37.731858 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387367,37.732055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.38731,37.731849 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.38889,37.732921 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176,37.732912 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.39292,37.735029 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392657,37.735028 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394535,37.7361 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.39481,37.7361 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396367,37.737163 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396722,37.737216 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.39824,37.73821 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.39853,37.73825 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46074,37.762727 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460511,37.762656 ] } } +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458746,37.763308 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458173,37.763308 ] } } +{ "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.449854,37.764789 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45697,37.763807 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456741,37.763718 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103,37.764771 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451298,37.764602 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452879,37.764548 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.45265,37.764432 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454529,37.764352 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.4543,37.764236 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591,37.723647 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343,37.722485 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.39908,37.723289 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397946,37.723012 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397385,37.722726 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401576,37.723879 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400202,37.723397 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429501,37.720139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429467,37.720112 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422504,37.717782 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779,37.717791 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432673,37.721638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432959,37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435845,37.723147 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435765,37.722941 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428676,37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428963,37.719702 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.43107,37.72088 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431356,37.720853 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434276,37.722406 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434563,37.722379 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427062,37.718961 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427348,37.718934 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.45226,37.7241 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.45243,37.72385 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45229,37.72762 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452453,37.727867 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648,37.723468 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648,37.72354 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.45227,37.726038 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.45243,37.725539 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40088,37.7291 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40101,37.72912 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40144,37.72847 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40193,37.72808 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391267,37.739757 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392987,37.73808 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392964,37.737866 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394099,37.73684 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394088,37.736635 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394672,37.736216 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39988,37.73019 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400088,37.792288 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.39772,37.79254 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398518,37.792484 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402542,37.791941 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.43927,37.76805 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471975,37.776948 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.47214,37.77648 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711,37.784363 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528,37.784497 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471653,37.773219 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.47191,37.77327 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472412,37.780571 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217,37.780776 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.45601,37.71334 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.38699,37.717502 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.45612,37.71416 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.45605,37.71397 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456015,37.719881 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456221,37.720113 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456232,37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038,37.721764 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45606,37.71817 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456209,37.718454 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.45613,37.71501 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.45605,37.71484 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45765,37.73209 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457768,37.732239 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.45605,37.71598 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.45612,37.71586 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.45605,37.71655 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.45613,37.71643 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45753,37.73111 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049,37.723772 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456233,37.723638 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.45599,37.7117 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.45608,37.71155 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.45614,37.71757 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.45607,37.71773 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45851,37.73261 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626,37.753457 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.45203,37.749264 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421731,37.796185 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421812,37.795676 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644,37.790822 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420793,37.790644 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423231,37.803653 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.42338,37.803475 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.42204,37.797737 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423014,37.801628 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422796,37.801476 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.4237,37.805018 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419661,37.785022 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421537,37.795275 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420381,37.789537 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.42053,37.789359 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419889,37.786914 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419969,37.786566 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420827,37.791741 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421057,37.791929 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420072,37.788002 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420221,37.787824 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422292,37.799004 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422441,37.798826 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422075,37.796961 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421193,37.793499 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421411,37.793695 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443483,37.749951 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.44396,37.74897 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444766,37.747042 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46527,37.73955 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.4442,37.74715 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455776,37.741974 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.46344,37.7401 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447917,37.746462 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41772,37.78705 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41459,37.78745 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427675,37.785774 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.40238,37.78901 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426654,37.785906 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.41956,37.7868 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.40793,37.7883 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.41132,37.78788 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448,37.786575 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4082,37.766343 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407474,37.766031 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407646,37.765701 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407349,37.764738 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40754,37.76423 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40705,37.76185 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40729,37.76164 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40684,37.75962 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40705,37.75908 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.4069,37.75749 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.4066,37.75719 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40675,37.75588 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.40657,37.75399 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406267,37.753254 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40644,37.75268 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40608,37.75164 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406337,37.751264 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407667,37.768256 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.40792,37.76844 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.40766,37.76826 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411833,37.805738 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412508,37.808031 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408711,37.790158 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408871,37.790141 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409145,37.7923 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409294,37.792211 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409465,37.793755 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409626,37.793835 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407899,37.785376 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411124,37.801232 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411879,37.804962 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.41165,37.80481 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408322,37.787464 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408128,37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409774,37.795316 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411272,37.802945 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411433,37.802767 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407636,37.784457 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.40768,37.7848 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407785,37.784635 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412038,37.806666 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412176,37.806497 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408139,37.786509 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407933,37.786322 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408905,37.791095 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409066,37.791078 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408505,37.788392 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408299,37.788195 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409259,37.79288 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409443,37.79296 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408493,37.789132 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408642,37.789061 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409637,37.794638 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42605,37.7204 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42617,37.72041 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435069,37.710164 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436798,37.709968 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42718,37.71903 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42722,37.71884 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4282,37.71756 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42835,37.71748 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44578,37.75041 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446084,37.752351 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736,37.787381 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897,37.787354 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.44726,37.78918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.44704,37.78897 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445796,37.782706 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.44593,37.78267 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447607,37.790905 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.4474,37.79071 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.44653,37.786239 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446759,37.786328 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446197,37.784535 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446289,37.784392 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.45499,37.79817 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094,37.798249 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456298,37.7984 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452652,37.79907 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452537,37.799043 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452904,37.799105 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451517,37.796482 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4517,37.796705 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512976,37.779102 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502855,37.779651 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073,37.779553 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50501,37.779837 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.44764,37.74636 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4552,37.74324 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45524,37.74287 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.44957,37.74593 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46107,37.7404 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46083,37.74023 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457517,37.740885 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406472,37.755413 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46368,37.73993 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.4519,37.74532 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456521,37.741626 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45238,37.74533 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424982,37.786123 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40599,37.78855 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41626,37.78724 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41295,37.78765 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505228,37.779739 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50744,37.780041 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507394,37.779916 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50847,37.77999 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509595,37.779773 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509905,37.779888 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512047,37.779031 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468369,37.749039 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468563,37.74887 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47298,37.74872 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474086,37.748806 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47408,37.74867 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47584,37.74871 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47622,37.74858 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47917,37.74855 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47943,37.74845 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48131,37.74846 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48157,37.74836 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48345,37.74838 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483469,37.748277 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48458,37.74832 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48477,37.74822 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4856,37.74827 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48586,37.74816 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48666,37.74822 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48692,37.74812 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48881,37.74814 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48905,37.748 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49095,37.74805 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49121,37.74791 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4931,37.74796 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49334,37.74783 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494399,37.747765 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49763,37.74763 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49952,37.74768 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49981,37.74754 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501938,37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50304,37.74742 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50487,37.74743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507,37.74734 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467681,37.749093 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467051,37.748977 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469423,37.748985 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46964,37.748834 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466982,37.714342 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467218,37.714201 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463392,37.714348 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.46361,37.71424 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470248,37.714761 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.42757,37.7397 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.40515,37.71257 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.36519,37.72859 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.36559,37.72876 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447447,37.800408 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446954,37.800328 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.45466,37.7478 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39504,37.73098 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.3954,37.72979 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401842,37.75617 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402912,37.767466 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402729,37.767315 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402627,37.766324 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402799,37.766164 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673,37.76487 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4024,37.761988 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402298,37.760953 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40201,37.75959 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402161,37.759436 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911,37.756884 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401672,37.754332 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401569,37.753386 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401467,37.75211 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342,37.750727 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038,37.768742 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402843,37.768573 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402525,37.763264 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40207,37.758499 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.41701,37.73564 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.42433,37.73621 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.42006,37.73579 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410465,37.744368 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.41051,37.74428 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41315,37.74418 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.41301,37.74414 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429647,37.731399 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428184,37.761192 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427924,37.758264 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427795,37.758229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426922,37.756643 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426822,37.756436 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.42775,37.754607 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.47435,37.73119 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474366,37.730987 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426999,37.757451 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426867,37.757239 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719,37.732022 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473815,37.731808 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47189,37.734298 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471956,37.734299 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.45048,37.74018 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609,37.740198 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449361,37.740823 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443299,37.764495 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443138,37.764495 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437225,37.767162 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439505,37.766493 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445373,37.76197 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445213,37.761952 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.44291,37.76373 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.44301,37.76373 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.4437,37.76342 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443792,37.763237 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.44102,37.76536 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.42985,37.71814 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.43012,37.71817 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407389,37.712451 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408696,37.709944 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49536,37.74585 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50504,37.74543 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.5067,37.74535 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39135,37.73241 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39123,37.7322 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.38469,37.7285 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.3863,37.72953 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.38656,37.72956 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.39004,37.73165 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.39029,37.73169 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.45344,37.71331 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.45315,37.7133 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452148,37.714153 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452279,37.713952 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.45208,37.71407 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446474,37.720827 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446695,37.720467 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446887,37.720462 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446772,37.720685 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.44163,37.72683 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450334,37.71626 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450435,37.716083 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448662,37.718516 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448593,37.718284 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447196,37.71998 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44754,37.71969 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447611,37.719395 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44101,37.72774 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44441,37.72322 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444699,37.723085 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44479,37.722862 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444894,37.722933 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424157,37.739741 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.42402,37.73973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.42442,37.73956 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.42432,37.739385 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4412,37.72715 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.45593,37.71322 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455945,37.7112 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439922,37.728991 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440016,37.728996 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44211,37.72597 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442359,37.725877 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442442,37.725681 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44252,37.72575 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400282,37.79418 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430617,37.790316 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430855,37.790194 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.45656,37.786908 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.39761,37.7945 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434336,37.78984 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433669,37.789839 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424037,37.79115 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426132,37.790887 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406306,37.793411 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417445,37.79197 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414161,37.792396 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404846,37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419531,37.791721 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415755,37.792183 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.42896,37.790526 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429185,37.79036 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403068,37.793842 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403221,37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427502,37.790709 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427138,37.79068 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421146,37.791516 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409116,37.793043 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447011,37.788095 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401551,37.79403 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411864,37.792673 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407591,37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422286,37.791378 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447979,37.788026 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432226,37.790107 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.4325,37.789987 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.46156,37.71144 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45888,37.71149 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45913,37.71129 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46198,37.71128 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45608,37.71155 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085,37.793305 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.40122,37.79318 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.40149,37.79447 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.40294,37.80234 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.40325,37.80393 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40202,37.79778 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.40086,37.79202 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.40131,37.79428 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.40061,37.79034 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.40276,37.80142 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.4024,37.79967 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.40166,37.79606 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41878,37.71062 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418864,37.711696 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418681,37.711857 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418876,37.711714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41885,37.71171 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41987,37.70864 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42008,37.7085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4193,37.709867 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419426,37.710028 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446657,37.720524 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40057,37.71479 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40057,37.71479 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40046,37.71467 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4019,37.71424 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402419,37.712289 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40259,37.71245 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.40368,37.727975 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.40367,37.72797 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.40355,37.72733 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403647,37.72752 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.4022,37.72408 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.4047,37.73011 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400948,37.721478 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401223,37.721604 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4021,37.72418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401863,37.723647 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40537,37.73206 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40556,37.73217 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.40213,37.71384 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40462,37.73026 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.40042,37.71938 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.40049,37.71905 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39984,37.717 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39993,37.71672 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.40271,37.72531 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.40301,37.72637 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465798,37.733202 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466154,37.734861 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.44183,37.80308 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.4008,37.7581 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.40177,37.75839 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.40112,37.75814 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.45285,37.77403 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451756,37.769313 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412,37.70931 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41198,37.70906 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359,37.706528 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41293,37.70709 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41136,37.71049 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41151,37.71036 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41234,37.70826 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41254,37.70813 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45466,37.71038 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45478,37.71029 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465523,37.741156 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433256,37.729794 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433175,37.729589 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402188,37.734586 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410839,37.730913 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404365,37.733052 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419396,37.729131 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419167,37.729015 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404297,37.733275 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425868,37.728713 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426085,37.728561 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.42812,37.72857 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412981,37.729932 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413611,37.729843 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422569,37.7289 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422786,37.728748 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410197,37.730967 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402566,37.734167 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428789,37.728473 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.40885,37.7315 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408994,37.731332 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.4314,37.728901 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431114,37.728776 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431217,37.72866 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39663,37.7371 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416109,37.729014 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416269,37.728827 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398624,37.736316 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398888,37.736361 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405695,37.732348 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405947,37.732411 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400664,37.735335 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401065,37.735273 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424085,37.78505 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094,37.751218 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450449,37.748925 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450335,37.749942 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501695,37.728222 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.50253,37.726758 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502449,37.726392 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499223,37.731149 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636,37.733542 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496842,37.733595 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474493,37.73478 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475272,37.734494 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47738,37.734752 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477242,37.734485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479625,37.734404 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48218,37.734287 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491607,37.734141 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493646,37.734042 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49345,37.73378 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597,37.73373 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496773,37.733907 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499294,37.734567 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498961,37.73413 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501345,37.735387 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500749,37.735012 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503407,37.7356 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502777,37.735368 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505366,37.735563 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505354,37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491595,37.733847 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489259,37.73424 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480061,37.734653 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486235,37.734375 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489683,37.733955 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483944,37.734215 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482237,37.734555 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496819,37.733702 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485834,37.734125 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483955,37.734483 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47187,37.73478 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471881,37.734575 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.43101,37.76628 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47049,37.74508 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4735,37.74507 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431507,37.710708 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432183,37.712153 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431771,37.711234 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432103,37.711698 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418622,37.773316 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.36793,37.72533 ] } } +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395548,37.793589 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.45284,37.76554 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.45269,37.76533 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452914,37.766449 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454714,37.774604 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454186,37.772819 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454335,37.772766 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785,37.770856 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453464,37.768331 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.46933,37.71028 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46932,37.70874 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435568,37.788844 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436863,37.795859 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437037,37.795937 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435556,37.789329 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437054,37.796785 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437137,37.796627 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436669,37.794911 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436789,37.794887 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436132,37.791449 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393404,37.793463 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393702,37.793704 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394263,37.79415 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393324,37.79324 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393255,37.793356 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.39349,37.79336 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.39455,37.794427 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471252,37.735021 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471618,37.734807 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46636,37.734861 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467849,37.734941 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468067,37.73479 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469579,37.734861 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469797,37.734709 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319,37.731837 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.41061,37.8078 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407757,37.793736 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408878,37.799215 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40905,37.799277 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.40624,37.78576 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409461,37.801419 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406706,37.78774 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409656,37.802347 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.4095,37.80221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.40969,37.80313 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40826,37.796244 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408604,37.797189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407861,37.793433 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406923,37.789596 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.40714,37.789953 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.40928,37.80054 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408249,37.795369 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495784,37.762621 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495955,37.762496 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495851,37.761006 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495656,37.760765 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713,37.759132 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495518,37.758891 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493518,37.73034 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493655,37.729804 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495585,37.757267 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.49539,37.757026 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495458,37.755402 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263,37.755162 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495319,37.753538 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495124,37.753297 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493862,37.732026 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493622,37.73183 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.49502,37.751798 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495169,37.751307 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495065,37.749808 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.49487,37.749567 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494766,37.748068 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494915,37.747578 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494799,37.746079 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494604,37.745838 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.49368,37.733364 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.49392,37.732945 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494672,37.744223 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494477,37.743982 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494545,37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.49435,37.742108 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211,37.740243 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383,37.740118 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494279,37.738619 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494084,37.738379 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494152,37.736764 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911,37.736541 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493784,37.734854 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494059,37.734783 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41954,37.71279 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419952,37.712972 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42138,37.7134 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42115,37.71322 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405204,37.708944 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409521,37.710007 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409612,37.710203 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41278,37.71106 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413024,37.710981 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422116,37.713704 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422219,37.713553 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.40851,37.70986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418177,37.712419 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417536,37.712231 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.41495,37.71167 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.41521,37.71163 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41162,37.71074 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.4115,37.71059 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.40669,37.70935 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407,37.70935 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443067,37.784889 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443306,37.784766 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429863,37.786577 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429608,37.786502 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439732,37.78531 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.43943,37.785259 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433151,37.786158 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432828,37.786086 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924,37.787207 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416908,37.788216 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413618,37.788643 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404378,37.789818 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418536,37.788011 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415269,37.788429 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428706,37.786724 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428457,37.786647 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410316,37.789062 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427062,37.786933 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420198,37.787797 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408677,37.789266 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446175,37.784383 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400674,37.790298 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078,37.78552 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438322,37.785402 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434793,37.785942 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435028,37.785794 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407026,37.78948 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411956,37.788857 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42154,37.78763 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473429,37.743204 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473705,37.743068 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475444,37.74311 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475821,37.742971 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478791,37.742967 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478426,37.74289 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48045,37.742872 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481199,37.742735 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483068,37.74278 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483324,37.742653 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485212,37.742684 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467,37.74254 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487338,37.74259 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487615,37.742461 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489489,37.74249 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489749,37.742355 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492708,37.742354 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492961,37.742235 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498055,37.742124 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498316,37.74199 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500202,37.742021 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500461,37.7419 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502346,37.741924 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502606,37.741804 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50449,37.741823 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504341,37.741766 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494218,37.742267 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494651,37.742179 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415066,37.804963 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415238,37.805329 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415307,37.805257 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414998,37.803758 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414952,37.804383 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396365,37.789485 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393395,37.790759 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.40058,37.788937 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.39633,37.78965 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677,37.801766 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406789,37.803006 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.40664,37.802988 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405735,37.801846 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406617,37.802721 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406457,37.802605 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389664,37.7629 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445672,37.73679 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867,37.736835 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446359,37.733953 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.44664,37.73399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446634,37.7377 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.44605,37.738931 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446245,37.738967 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451182,37.743063 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446462,37.735693 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448776,37.734345 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446325,37.735523 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451388,37.743491 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734,37.739895 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448009,37.73985 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450472,37.74184 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450529,37.741733 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44558,37.734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446336,37.737477 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450655,37.742599 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452099,37.745079 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449223,37.740975 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449177,37.740707 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445283,37.73447 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4455,37.734568 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.39513,37.75838 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.39519,37.75826 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.37144,37.81622 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.3718,37.81602 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398814,37.7439 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399009,37.743936 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400442,37.742313 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400992,37.741492 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401565,37.741073 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392452,37.778981 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393037,37.778723 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39443,37.77742 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394975,37.777189 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395032,37.777028 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.3972,37.775432 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397211,37.775227 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399424,37.773675 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399436,37.77347 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401661,37.771704 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401947,37.771695 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.39762,37.7333 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.39555,37.7318 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39527,37.73117 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.39592,37.73201 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.42639,37.73097 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.42624,37.73084 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42192,37.73095 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45818,37.77715 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442174,37.779288 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442151,37.779163 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440295,37.779511 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440489,37.779359 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451699,37.778093 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451367,37.778012 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445246,37.778914 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445441,37.778762 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415856,37.782621 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412577,37.783039 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417197,37.782461 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217,37.782835 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443596,37.77911 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443791,37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447206,37.778664 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447138,37.778548 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.41926,37.78218 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453281,37.777905 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453476,37.777754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.44959,37.778235 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449659,37.778351 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455367,37.777637 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455035,37.777557 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409895,37.783387 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42107,37.78195 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48722,37.74072 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46847,37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4688,37.741435 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.46626,37.741174 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.4658,37.740947 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465754,37.740947 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465411,37.741464 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465938,37.740884 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465777,37.740795 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466006,37.74092 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445314,37.795902 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445509,37.79575 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585,37.797513 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432302,37.797427 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.41004,37.80038 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409932,37.800411 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410643,37.800197 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.44199,37.796321 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442184,37.79617 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435661,37.797124 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435328,37.797043 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177,37.798211 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371,37.79806 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4075,37.80068 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40769,37.8006 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418956,37.799271 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419151,37.79912 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665,37.79969 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.41586,37.799538 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405965,37.800909 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406102,37.800758 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420607,37.799066 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420527,37.79895 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417545,37.799449 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417511,37.799324 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430456,37.797792 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430651,37.797641 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446702,37.795599 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412374,37.800108 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412569,37.799957 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404474,37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404508,37.800962 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438688,37.79674 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883,37.796589 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422499,37.798799 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.42243,37.798683 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.43714,37.79687 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409267,37.800366 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414025,37.799895 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.41422,37.799743 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424241,37.798585 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42415,37.798469 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.41354,37.72514 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.41339,37.72499 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.41414,37.72659 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.41401,37.72647 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.41439,37.72739 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.41253,37.72273 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.41307,37.72393 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.4129,37.72381 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.4428,37.76582 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44338,37.76545 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423331,37.79608 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422261,37.790439 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.42464,37.80258 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424905,37.802431 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424848,37.802351 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.4226,37.79245 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.42073,37.7832 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.42089,37.7825 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424996,37.804287 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421403,37.785683 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.42155,37.78578 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424298,37.800477 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424424,37.800334 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.41982,37.77869 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.41992,37.77787 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423005,37.794177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423131,37.793829 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.42019,37.780204 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420324,37.779687 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419194,37.775305 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425248,37.805161 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425397,37.804965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425409,37.805108 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419482,37.775527 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.41948,37.77553 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421128,37.784817 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421254,37.784683 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4234,37.79489 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422304,37.789509 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.42133,37.78611 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422604,37.791162 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.42166,37.78783 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421838,37.787396 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.42054,37.78229 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424081,37.798443 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423909,37.798657 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.4237,37.79641 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487131,37.738765 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50531,37.738079 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46677,37.73968 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46659,37.73946 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.38854,37.72703 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.38883,37.72707 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.39042,37.72808 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.39027,37.72789 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392238,37.729202 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.39991,37.73037 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412371,37.712765 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.41263,37.71273 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404493,37.710567 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.40896,37.7117 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.41518,37.71353 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407791,37.711488 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.40807,37.71144 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414237,37.713283 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.41453,37.71324 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410504,37.712247 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.41078,37.71219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42212,37.76839 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42227,37.76786 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42197,37.76678 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42212,37.76626 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42182,37.76523 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42196,37.76463 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42165,37.76341 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42178,37.76309 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42152,37.76201 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42165,37.76142 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42135,37.76035 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4215,37.75986 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4212,37.75874 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42135,37.75826 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.42104,37.75715 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.4212,37.75661 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.42089,37.75555 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.42104,37.75506 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.42071,37.75361 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.42088,37.7534 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42059,37.75236 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42074,37.75186 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42044,37.75075 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42059,37.75028 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42043,37.74866 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420213,37.748217 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420351,37.747994 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4223,37.77015 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422451,37.769801 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420076,37.746655 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.42024,37.74674 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.4226,37.77133 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40444,37.76456 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40433,37.76221 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40418,37.76202 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.4042,37.76095 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40406,37.76074 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.40406,37.75966 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.40429,37.7633 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.40443,37.76324 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469053,37.737868 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469053,37.7381 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469042,37.737859 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470519,37.736485 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.47112,37.73548 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.46565,37.74093 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465743,37.74084 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465858,37.741009 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.46698,37.73984 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.46698,37.739617 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.44852,37.787492 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457977,37.75368 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461312,37.755402 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461484,37.75691 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461897,37.757722 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459971,37.75376 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461083,37.754474 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463135,37.758694 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.45635,37.75534 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431191,37.791921 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434481,37.791503 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.42461,37.792759 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.42625,37.792545 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.41804,37.79363 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414693,37.794042 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.4198,37.79341 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416287,37.793828 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429116,37.79218 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.41136,37.79453 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411529,37.794442 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421274,37.793187 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410038,37.794629 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402064,37.795733 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413008,37.794255 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42243,37.79308 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842,37.791716 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504351,37.736125 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456441,37.746489 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45535,37.74638 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455593,37.746283 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455548,37.746283 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452431,37.745766 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452225,37.745623 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453829,37.745766 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454058,37.745695 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434502,37.800943 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40438,37.71705 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40413,37.71687 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401237,37.716357 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.40718,37.71782 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400252,37.716615 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400195,37.716473 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.4022,37.716099 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402302,37.716286 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475922,37.727017 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475739,37.726883 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478488,37.72806 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478672,37.727997 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483299,37.727122 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.48331,37.726979 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39911,37.75973 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39886,37.75719 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39876,37.75485 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39863,37.75468 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39841,37.75238 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398556,37.752287 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398282,37.751279 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.39853,37.75355 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.39867,37.753447 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.39864,37.75346 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.39872,37.75577 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.39884,37.75591 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39295,37.72938 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39285,37.72925 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.39525,37.72973 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.40941,37.72349 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.40961,37.72338 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.41145,37.72294 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.41157,37.72284 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41043,37.72324 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.4106,37.72312 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.40763,37.72388 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.40841,37.72374 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.40864,37.72362 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.41238,37.72271 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427491,37.738903 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383322,37.733337 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082,37.733248 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484077,37.77235 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45896,37.733604 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459189,37.733702 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459659,37.734559 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459705,37.734389 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.46055,37.73531 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458719,37.732623 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435289,37.762683 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396396,37.793143 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192,37.74817 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402127,37.788791 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407822,37.7843 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.41934,37.775234 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414995,37.778675 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429321,37.767327 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405005,37.774587 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.39498,37.77709 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472813,37.717371 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426511,37.7421 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408066,37.783992 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374986,37.823245 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401907,37.798401 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39661,37.71097 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39636,37.711 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39723,37.71121 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39747,37.71119 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39919,37.71159 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.39896,37.71162 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40092,37.71201 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46704,37.784749 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.44496,37.77677 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42829,37.75978 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.42807,37.75738 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466422,37.782893 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44508,37.7493 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40745,37.71777 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393563,37.795033 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.41526,37.73327 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.39652,37.78574 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444823,37.76735 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415486,37.713301 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453936,37.800533 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445108,37.798668 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38918,37.76436 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419378,37.775216 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405051,37.742854 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404165,37.742528 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390278,37.734495 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392079,37.735666 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392358,37.735682 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452453,37.723031 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418214,37.778039 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412248,37.807604 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406724,37.713852 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40679,37.7138 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40619,37.71534 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40621,37.71516 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40735,37.71264 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408536,37.7099 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40792,37.71156 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40793,37.71135 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44478,37.72307 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44474,37.72282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44003,37.72904 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44007,37.72881 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44237,37.72567 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4424,37.7259 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.45334,37.76824 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.40763,37.71716 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.4058,37.71666 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432107,37.797578 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938,37.71621 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465846,37.740893 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400974,37.716268 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405451,37.717224 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405211,37.717349 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475302,37.721172 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475096,37.721244 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395329,37.766657 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.43975,37.72205 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42856,37.76439 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.42658,37.7436 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.42662,37.74264 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428893,37.767384 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42903,37.76932 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.43365,37.76922 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406198,37.806788 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384564,37.740905 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.47744,37.71749 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46631,37.7621 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46952,37.76195 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47278,37.7618 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47367,37.76192 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47718,37.76161 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47684,37.76178 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48118,37.76158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48652,37.76135 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48676,37.76118 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48355,37.76134 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48973,37.76121 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.48949,37.76107 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49295,37.76107 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49318,37.7609 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.49595,37.76078 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480487,37.793569 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419583,37.764945 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461315,37.705979 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50284,37.76048 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.4614,37.72491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45834,37.72426 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46678,37.72722 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46788,37.72839 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.46947,37.72994 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.46436,37.72598 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.45223,37.71417 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44697,37.72044 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471446,37.734825 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.49423,37.74231 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.44864,37.71847 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465911,37.740767 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471707,37.731628 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471818,37.731271 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45039,37.71629 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.45036,37.71606 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50605,37.76035 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50581,37.76049 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50258,37.76064 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49914,37.76064 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.49937,37.76077 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47983,37.76149 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431216,37.765632 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.49463,37.74213 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468984,37.738064 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.39176,37.7577 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415706,37.707136 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.40572,37.7166 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505,37.779354 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.40517,37.7747 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.40369,37.74641 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.42202,37.790439 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46687,37.7829 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387977,37.784627 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489,37.78957 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.39784,37.773168 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.45013,37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.36098,37.72735 ] } } +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46504,37.73985 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.41234,37.8081 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.46964,37.71432 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446695,37.720467 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446872,37.720949 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.36871,37.72534 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.39877,37.78397 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466819,37.784792 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.47003,37.71441 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429133,37.769463 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419252,37.775029 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446577,37.720613 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446566,37.720622 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864,37.776278 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843,37.762972 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388638,37.760572 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393955,37.776367 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931,37.742709 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395667,37.722404 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.40525,37.708801 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390905,37.733895 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402293,37.712449 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419093,37.712606 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388853,37.764248 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388001,37.755316 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387851,37.74261 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405067,37.708837 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392753,37.72922 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413978,37.80283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412521,37.780345 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395605,37.793633 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407342,37.797849 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477186,37.765384 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379358,37.734388 ] } } +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399676,37.791315 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388434,37.758038 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387287,37.746019 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401995,37.713395 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389284,37.769718 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457034,37.720104 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459072,37.720104 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461111,37.720095 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465234,37.719764 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444915,37.746837 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393495,37.779562 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829,37.718927 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.46616,37.760398 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466034,37.758542 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422477,37.728757 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421732,37.794177 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509876,37.773206 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.4714,37.734914 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382549,37.739806 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.50493,37.735394 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415052,37.734733 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471663,37.731336 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475786,37.728783 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404266,37.784339 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.41017,37.739711 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403466,37.78044 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409367,37.785358 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419252,37.775029 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396431,37.793152 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419263,37.775145 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509201,37.760348 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446966,37.763014 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402462,37.75443 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.46611,37.741015 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.43714,37.796874 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423096,37.794918 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475302,37.721199 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.47529,37.721199 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394917,37.794454 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443483,37.746016 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443208,37.746676 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456174,37.713279 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473791,37.758023 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413241,37.738239 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.41347,37.738257 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530266,37.825033 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394631,37.777278 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476033,37.716711 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485164,37.724123 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490712,37.772188 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425688,37.718291 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472161,37.784595 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394618,37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425882,37.720522 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455923,37.72014 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459105,37.783258 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437252,37.73828 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433694,37.769392 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435266,37.762549 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371017,37.813134 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370856,37.813143 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369584,37.811803 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.36455,37.811862 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364299,37.811336 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.46386,37.773746 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.46386,37.773738 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431991,37.751377 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399195,37.79094 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458813,37.747898 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458905,37.748371 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458779,37.748273 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.45879,37.747836 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403233,37.805146 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094,37.765878 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.39377,37.794828 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405434,37.80661 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390473,37.744039 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.39392,37.746164 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416843,37.780382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401592,37.734773 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415428,37.7654 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433893,37.748201 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396647,37.778448 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393186,37.793097 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435581,37.796972 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396797,37.793527 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446473,37.767305 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464424,37.784712 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.40525,37.708801 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407623,37.767334 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418485,37.772994 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423217,37.709306 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.41198,37.78585 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400949,37.791066 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394245,37.725482 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423102,37.709083 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408599,37.784386 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469042,37.738091 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450541,37.740038 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463856,37.758426 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408576,37.784314 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438279,37.766698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413705,37.749223 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414128,37.752444 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407306,37.738371 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407681,37.7848 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409767,37.786099 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428996,37.767786 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426528,37.742133 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433076,37.769134 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598,37.776157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395243,37.723127 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389296,37.769557 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389967,37.776241 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390104,37.776187 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389445,37.769317 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953,37.719585 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468155,37.719594 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454194,37.723424 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405775,37.711897 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403794,37.711138 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407148,37.713343 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409049,37.713844 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413469,37.715032 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414443,37.713345 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179,37.712226 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213,37.714424 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432093,37.805279 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451239,37.731463 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387001,37.717484 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402328,37.712244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397468,37.718809 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395644,37.722413 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394222,37.725491 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394256,37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392604,37.729291 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392638,37.729264 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.39561,37.722449 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391514,37.732262 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390848,37.73435 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389699,37.737633 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388896,37.739916 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.38792,37.742726 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387445,37.748999 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388001,37.755414 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388558,37.760518 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388853,37.764391 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389308,37.769049 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389717,37.772993 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389717,37.772832 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389274,37.76854 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388865,37.764239 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388558,37.760376 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388012,37.75529 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387479,37.749079 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388034,37.742727 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393944,37.776153 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.47187,37.73462 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.40711,37.782101 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389027,37.732894 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391636,37.736268 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390513,37.737517 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.38963,37.737945 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390524,37.737579 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391648,37.736331 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390174,37.731699 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397468,37.718809 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387422,37.748945 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387571,37.749097 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391811,37.778097 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489,37.78957 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388761,37.764427 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388945,37.764177 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759,37.802299 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.39336,37.775778 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456126,37.801434 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458774,37.797954 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.45639,37.801371 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459038,37.797891 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454097,37.800756 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388907,37.739916 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389711,37.737641 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390859,37.73435 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536,37.73228 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491,37.718827 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402316,37.712253 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405113,37.70897 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036,37.776252 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405044,37.708944 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402339,37.712226 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397468,37.718809 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391502,37.732262 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390836,37.734358 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389688,37.737641 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388884,37.739916 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393898,37.776323 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418656,37.775502 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399026,37.786211 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399256,37.786077 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393511,37.726936 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395599,37.722333 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423871,37.773825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414723,37.778784 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412452,37.780648 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501,37.733148 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504129,37.781836 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594,37.728597 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387153,37.741406 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396869,37.789262 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428571,37.728606 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371131,37.813062 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386823,37.752808 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400099,37.793127 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387954,37.7846 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475098,37.727258 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846,37.727195 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396,37.77263 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401606,37.786034 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466333,37.766019 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418311,37.778383 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388239,37.758074 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416752,37.77874 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425352,37.80484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472802,37.780705 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396723,37.78563 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.45312,37.774907 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.40621,37.753067 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404631,37.709523 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413084,37.706296 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393008,37.755158 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392758,37.752624 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394695,37.752348 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.39277,37.752463 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392791,37.755015 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753,37.731695 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423793,37.803377 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386889,37.755387 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386832,37.755387 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416167,37.752275 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401676,37.764789 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464834,37.775379 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465006,37.775263 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386867,37.755387 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473077,37.782498 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397473,37.761326 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396779,37.754678 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396572,37.754705 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390559,37.780702 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398143,37.786755 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400068,37.788282 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400502,37.790352 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418082,37.7481 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413579,37.748376 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432807,37.792743 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459196,37.706613 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.36633,37.820001 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367968,37.822375 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369914,37.825232 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371964,37.828311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376302,37.825468 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372714,37.824056 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452513,37.77306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394001,37.79266 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189,37.781166 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397657,37.793242 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443331,37.801907 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473834,37.748592 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473799,37.748833 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389,37.808236 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411223,37.741451 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475619,37.743024 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474939,37.73246 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.46572,37.740875 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466144,37.741098 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396597,37.785514 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373907,37.823521 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064,37.748056 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475215,37.73469 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473522,37.741204 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394244,37.789823 ] } } +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393567,37.790608 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394244,37.789814 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655,37.707049 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475565,37.719682 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466161,37.764101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466241,37.76394 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419275,37.774966 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419263,37.774922 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393086,37.78885 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394175,37.789716 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393303,37.790545 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443422,37.803647 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398723,37.77645 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393326,37.790608 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501697,37.730666 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413919,37.73327 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.47707,37.761752 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507998,37.760269 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508032,37.760367 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383313,37.743804 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435167,37.802745 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413587,37.780889 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430485,37.772006 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440816,37.723433 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466475,37.783026 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.49381,37.833698 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483383,37.833148 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493902,37.833609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460674,37.706149 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409962,37.787214 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401828,37.77894 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407625,37.783502 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417617,37.765303 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416202,37.750643 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419816,37.768212 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417583,37.765053 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417309,37.762117 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417001,37.758932 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416693,37.755729 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416178,37.75249 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416464,37.755479 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416783,37.758869 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.41708,37.761876 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.41764,37.765258 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393381,37.792999 ] } } +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416305,37.777375 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414757,37.778579 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440931,37.716339 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392408,37.791339 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411606,37.776133 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415041,37.734858 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.40541,37.788587 ] } } +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402188,37.788996 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424973,37.804109 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403828,37.770233 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405237,37.771322 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444904,37.748059 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460947,37.762522 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459961,37.76279 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415682,37.734894 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529689,37.821831 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524399,37.830373 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412519,37.808076 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471941,37.776895 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445042,37.722746 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446543,37.720613 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436693,37.802628 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379516,37.737074 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503296,37.771612 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476524,37.772834 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444834,37.776808 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423457,37.779634 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446278,37.775746 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438587,37.777816 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443195,37.777263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487504,37.772474 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489624,37.772375 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.50034,37.77188 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503537,37.771736 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414789,37.758762 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414617,37.758985 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443321,37.777156 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443424,37.777093 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421334,37.784907 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408581,37.796734 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421174,37.784496 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446268,37.710968 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436246,37.72337 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419022,37.748216 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413763,37.748081 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.39358,37.711241 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409558,37.748374 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.41138,37.748339 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424283,37.739821 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424077,37.739848 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465766,37.740884 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465835,37.740849 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392886,37.735162 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422301,37.773084 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477243,37.765544 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394792,37.791831 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399464,37.731668 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402592,37.766012 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399681,37.766225 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396782,37.766402 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390719,37.766765 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389616,37.771164 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391037,37.770513 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.39088,37.766864 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397011,37.766492 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399842,37.766287 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402627,37.766119 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414,37.739961 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403,37.73997 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183,37.777764 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407957,37.785429 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394461,37.78993 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396133,37.776324 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408318,37.795753 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446222,37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399802,37.72154 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400809,37.723557 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398428,37.721129 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395633,37.722377 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452423,37.799123 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454028,37.800711 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.45584,37.802076 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453409,37.800345 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.42768,37.800861 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481234,37.720734 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479905,37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478691,37.718477 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473089,37.715016 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472779,37.713 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474566,37.713758 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388626,37.789597 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388535,37.789677 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480224,37.714488 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475574,37.714132 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474474,37.713588 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425157,37.804813 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.42807,37.800942 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480189,37.714595 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471515,37.735039 ] } } +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393381,37.793204 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446932,37.723031 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473135,37.714053 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483056,37.722491 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479096,37.728551 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483629,37.722759 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406667,37.755208 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622,37.789671 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421837,37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466893,37.712332 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496578,37.733702 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422455,37.791438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.42146,37.785603 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419298,37.774984 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390196,37.790811 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467145,37.711573 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.404998,37.728029 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430027,37.769499 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409287,37.784065 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409344,37.783913 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.39505,37.784291 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397435,37.782642 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402075,37.786346 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392811,37.788671 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393603,37.787958 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392171,37.786735 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398415,37.791895 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395469,37.79151 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725,37.793766 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428791,37.764457 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495559,37.751298 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490064,37.780771 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491999,37.777737 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404941,37.727994 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806,37.781867 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435626,37.800845 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419401,37.746245 ] } } diff --git a/tests/muni/out/-Z11_-z11.json b/tests/muni/out/-Z11_-z11.json new file mode 100644 index 0000000..1e99a8c --- /dev/null +++ b/tests/muni/out/-Z11_-z11.json @@ -0,0 +1,9744 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.431641,37.788049,11", +"description": "tests/muni/out/-Z11_-z11.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "11", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z11.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "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.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832497 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530303, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830497 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831446 ] } } +, +{ "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.821853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "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.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 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": "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.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "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.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "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.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 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.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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.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": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719982 ] } } +, +{ "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.719914 ] } } +, +{ "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.720016 ] } } +, +{ "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.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "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.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 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/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "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.446833, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "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.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "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 & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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": "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.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "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.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "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.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "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.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "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.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "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 & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398467, 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.397523, 37.718828 ] } } +, +{ "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.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 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.389627, 37.719948 ] } } +, +{ "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.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714890 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.714517 ] } } +, +{ "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.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "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.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714075 ] } } +, +{ "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.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713125 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "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.469664, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712514 ] } } +, +{ "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.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469363, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "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.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705791 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468677, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "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.462626, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713193 ] } } +, +{ "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.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 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.716452 ] } } +, +{ "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.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "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.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.710409 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706131 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459922, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707387 ] } } +, +{ "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.448678, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.441211, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712480 ] } } +, +{ "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.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714279 ] } } +, +{ "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.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 & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712174 ] } } +, +{ "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.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 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.428379, 37.717504 ] } } +, +{ "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.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711767 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710069 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.713736 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 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.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "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.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713260 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708236 ] } } +, +{ "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.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412972, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "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.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715365 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "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.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "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.406750, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.713226 ] } } +, +{ "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.405806, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.713872 ] } } +, +{ "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.402029, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "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": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712038 ] } } +, +{ "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.398982, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709865 ] } } +, +{ "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.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "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.405076, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "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.404861, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397265, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711020 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } +, +{ "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.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836463 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833717 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 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.483869, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832870 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829548 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803986 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.792253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482495, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480521, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807580 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.798459 ] } } +, +{ "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.458034, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 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.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801748 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798289 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798086 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +, +{ "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.443700, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447476, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800052 ] } } +, +{ "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.442884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795780 ] } } +, +{ "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.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "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.441854, 37.803104 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799306 ] } } +, +{ "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.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.802833 ] } } +, +{ "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.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "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.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438722, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791575 ] } } +, +{ "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.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793813 ] } } +, +{ "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.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "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.434130, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.790015 ] } } +, +{ "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.509961, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509618, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509446, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510819, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508502, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507472, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503095, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503867, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775498 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773564 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503095, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500434, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771902 ] } } +, +{ "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.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767899 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 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.509232, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509103, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "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.506185, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.762233 ] } } +, +{ "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.508159, 37.760300 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508073, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760300 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +, +{ "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.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505927, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502880, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +, +{ "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.499404, 37.760775 ] } } +, +{ "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.499189, 37.760707 ] } } +, +{ "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.496657, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492366, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781671 ] } } +, +{ "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.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490649, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490220, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "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.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "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.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492023, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.772411 ] } } +, +{ "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.487302, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.783842 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485070, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783978 ] } } +, +{ "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.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481809, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780111 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "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.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778076 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776210 ] } } +, +{ "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": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774344 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772716 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.776583 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477946, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764778 ] } } +, +{ "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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495885, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "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.495584, 37.760944 ] } } +, +{ "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.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761046 ] } } +, +{ "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.495627, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496743, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "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.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489533, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490306, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753717 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765456 ] } } +, +{ "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.480307, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477345, 37.763692 ] } } +, +{ "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.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 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.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.761589 ] } } +, +{ "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.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.759621 ] } } +, +{ "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.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.760164 ] } } +, +{ "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.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476573, 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.479749, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "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.476444, 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.476315, 37.754124 ] } } +, +{ "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.506399, 37.752801 ] } } +, +{ "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 ] } } +, +{ "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.505498, 37.752869 ] } } +, +{ "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.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504897, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501035, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498889, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735596 ] } } +, +{ "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.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501378, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500777, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 37.734578 ] } } +, +{ "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.501721, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731625 ] } } +, +{ "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.726771 ] } } +, +{ "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.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 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.494898, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494941, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497344, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490993, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491250, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488847, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486959, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486701, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494512, 37.744012 ] } } +, +{ "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.494683, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.740144 ] } } +, +{ "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.494297, 37.738650 ] } } +, +{ "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.494168, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489791, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744284 ] } } +, +{ "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.487345, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748288 ] } } +, +{ "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.484813, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738990 ] } } +, +{ "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.478805, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 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.493653, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.734408 ] } } +, +{ "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.483997, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486444, 37.729656 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482581, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "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.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 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": "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.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.784622 ] } } +, +{ "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.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.780586 ] } } +, +{ "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.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469192, 37.784690 ] } } +, +{ "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 St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "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.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 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.472453, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776922 ] } } +, +{ "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.470565, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472024, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +, +{ "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.468419, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785199 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.783028 ] } } +, +{ "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": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.785673 ] } } +, +{ "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.458892, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783096 ] } } +, +{ "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.458978, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781400 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "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.455716, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.779025 ] } } +, +{ "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.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "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.454557, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "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.470350, 37.762098 ] } } +, +{ "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.466187, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765931 ] } } +, +{ "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.469363, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "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.466273, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 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.762166 ] } } +, +{ "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.466273, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "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.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755278 ] } } +, +{ "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.472196, 37.754124 ] } } +, +{ "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.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760435 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 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.466059, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 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.465844, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756703 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465587, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "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.464385, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762403 ] } } +, +{ "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.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460179, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +, +{ "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.766067 ] } } +, +{ "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.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "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.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "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.461939, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 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.463827, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 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": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784045 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781875 ] } } +, +{ "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.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "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.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +, +{ "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.443657, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443099, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782349 ] } } +, +{ "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.453313, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449622, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452798, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773395 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 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.446318, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "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.445760, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.787030 ] } } +, +{ "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.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 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.438121, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783197 ] } } +, +{ "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.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437692, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.786013 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780959 ] } } +, +{ "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.432370, 37.781739 ] } } +, +{ "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.432456, 37.781366 ] } } +, +{ "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.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441554, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "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.441297, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770952 ] } } +, +{ "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.439623, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778177 ] } } +, +{ "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.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 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.434216, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.769358 ] } } +, +{ "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.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769460 ] } } +, +{ "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.450652, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450223, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452970, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452712, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765592 ] } } +, +{ "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.449880, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "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.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447820, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.765321 ] } } +, +{ "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.445974, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.763048 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 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.443743, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449021, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760944 ] } } +, +{ "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.446661, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 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.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +, +{ "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.445116, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.759825 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "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.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767763 ] } } +, +{ "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.768849 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "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.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766881 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.762437 ] } } +, +{ "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": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767628 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "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.433100, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "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.435417, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "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.438078, 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.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757585 ] } } +, +{ "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.437906, 37.755991 ] } } +, +{ "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.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760978 ] } } +, +{ "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.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.759417 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +, +{ "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.432928, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.761114 ] } } +, +{ "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.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } +, +{ "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.434516, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +, +{ "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.473912, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745132 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745098 ] } } +, +{ "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.749069 ] } } +, +{ "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.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752971 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750867 ] } } +, +{ "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.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468591, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 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.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736410 ] } } +, +{ "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.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468505, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 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 Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740788 ] } } +, +{ "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.465801, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 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.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.469063, 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.467003, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 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.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454429, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746048 ] } } +, +{ "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.457132, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.746286 ] } } +, +{ "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.453871, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739397 ] } } +, +{ "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.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.744012 ] } } +, +{ "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.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 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.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474771, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "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.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.734883 ] } } +, +{ "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.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "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.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "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.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 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.721612 ] } } +, +{ "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.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } +, +{ "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.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "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.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457347, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458119, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +, +{ "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.456274, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454257, 37.723479 ] } } +, +{ "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.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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.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 & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721951 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721781 ] } } +, +{ "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.456274, 37.719982 ] } } +, +{ "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.719914 ] } } +, +{ "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.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "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.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "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.452455, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747168 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 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.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.739261 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 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": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749102 ] } } +, +{ "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.440524, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.749340 ] } } +, +{ "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.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 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.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436576, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "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.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752801 ] } } +, +{ "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.434087, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432027, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 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": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747881 ] } } +, +{ "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.435846, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.746320 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "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.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 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": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +, +{ "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.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.740211 ] } } +, +{ "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.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734374 ] } } +, +{ "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.448978, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731421 ] } } +, +{ "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.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729826 ] } } +, +{ "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.446489, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.731659 ] } } +, +{ "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.444644, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723105 ] } } +, +{ "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.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "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.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "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.450309, 37.721951 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722155 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 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/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "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.446833, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "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.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "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 & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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": "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.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 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.444816, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 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.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731421 ] } } +, +{ "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.435718, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "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.434130, 37.733424 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729622 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725923 ] } } +, +{ "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.442412, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "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.438550, 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.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724327 ] } } +, +{ "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.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 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.423229, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 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.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.806190 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 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.412543, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.808055 ] } } +, +{ "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.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.808123 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806902 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800392 ] } } +, +{ "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.430482, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800968 ] } } +, +{ "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.427392, 37.798086 ] } } +, +{ "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.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 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.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423530, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802358 ] } } +, +{ "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.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801646 ] } } +, +{ "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.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "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.422328, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798832 ] } } +, +{ "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.422457, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 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.429538, 37.793168 ] } } +, +{ "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.426233, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "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.424645, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.796085 ] } } +, +{ "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.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 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.421556, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +, +{ "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.423401, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "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.791168 ] } } +, +{ "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.422328, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801036 ] } } +, +{ "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.419367, 37.800222 ] } } +, +{ "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.420568, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 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.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.797407 ] } } +, +{ "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.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799713 ] } } +, +{ "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.414989, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803308 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.801951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "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.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799917 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "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.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "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.410655, 37.800222 ] } } +, +{ "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.409968, 37.800426 ] } } +, +{ "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.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795169 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796526 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795576 ] } } +, +{ "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.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.792897 ] } } +, +{ "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.416320, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793847 ] } } +, +{ "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.416062, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "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.420568, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.792083 ] } } +, +{ "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.415633, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794288 ] } } +, +{ "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.411857, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794661 ] } } +, +{ "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.411556, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411084, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792422 ] } } +, +{ "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.414131, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.788658 ] } } +, +{ "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.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808258 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806970 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "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.408080, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 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.406492, 37.802630 ] } } +, +{ "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.405763, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797204 ] } } +, +{ "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.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800934 ] } } +, +{ "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.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "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.399411, 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.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "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.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798560 ] } } +, +{ "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.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796255 ] } } +, +{ "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.409668, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793067 ] } } +, +{ "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.409282, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 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.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792049 ] } } +, +{ "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.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.791100 ] } } +, +{ "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.407565, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +, +{ "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.408681, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406964, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "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.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.792795 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794050 ] } } +, +{ "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.401342, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.793338 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.791032 ] } } +, +{ "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.402158, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790964 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.788963 ] } } +, +{ "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.400098, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799578 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798933 ] } } +, +{ "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.396193, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.793542 ] } } +, +{ "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.396665, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 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.396150, 37.793508 ] } } +, +{ "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.395205, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "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.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "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.393489, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.789947 ] } } +, +{ "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.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790625 ] } } +, +{ "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.393360, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "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.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 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.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391171, 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.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390227, 37.790828 ] } } +, +{ "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.389927, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789472 ] } } +, +{ "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.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 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.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 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": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825209 ] } } +, +{ "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.823650 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825345 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367997, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366452, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 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.371173, 37.813073 ] } } +, +{ "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.371044, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364907, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364221, 37.820768 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811886 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811717 ] } } +, +{ "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.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786962 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 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.785063 ] } } +, +{ "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.428980, 37.781942 ] } } +, +{ "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.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.786589 ] } } +, +{ "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.422929, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "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.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780111 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431598, 37.775871 ] } } +, +{ "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.430868, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776074 ] } } +, +{ "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.426748, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.430782, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772038 ] } } +, +{ "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.430224, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "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.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786827 ] } } +, +{ "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.420654, 37.785877 ] } } +, +{ "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.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.783197 ] } } +, +{ "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.419281, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.779704 ] } } +, +{ "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.418723, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.782655 ] } } +, +{ "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.417436, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.787912 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787233 ] } } +, +{ "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.409797, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +, +{ "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.412457, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.780348 ] } } +, +{ "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.409925, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781196 ] } } +, +{ "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.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778211 ] } } +, +{ "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.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "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.419410, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775091 ] } } +, +{ "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.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.775973 ] } } +, +{ "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.419324, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "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.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.774582 ] } } +, +{ "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.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 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.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429967, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767560 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767797 ] } } +, +{ "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.429023, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +, +{ "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.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.764744 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.768408 ] } } +, +{ "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.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 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.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 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.757484 ] } } +, +{ "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.426963, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761419 ] } } +, +{ "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.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768645 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 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.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "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.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759825 ] } } +, +{ "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.419109, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761894 ] } } +, +{ "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.418895, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.756601 ] } } +, +{ "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.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.759350 ] } } +, +{ "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.414517, 37.755482 ] } } +, +{ "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.408423, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786352 ] } } +, +{ "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.409539, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 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.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 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.408338, 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.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782621 ] } } +, +{ "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.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +, +{ "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.401600, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.783062 ] } } +, +{ "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.403488, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.771563 ] } } +, +{ "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.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +, +{ "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.396622, 37.785538 ] } } +, +{ "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.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779500 ] } } +, +{ "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.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779568 ] } } +, +{ "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.392201, 37.786759 ] } } +, +{ "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.388167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +, +{ "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.395163, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777058 ] } } +, +{ "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.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772920 ] } } +, +{ "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.393060, 37.778754 ] } } +, +{ "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.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.776210 ] } } +, +{ "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.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "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.407565, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.764574 ] } } +, +{ "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.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764846 ] } } +, +{ "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.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764846 ] } } +, +{ "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.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +, +{ "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.402716, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399325, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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 & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "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.406921, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.754328 ] } } +, +{ "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.404089, 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.402329, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "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.402201, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759621 ] } } +, +{ "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 & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 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.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.754532 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "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.400012, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +, +{ "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.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.766881 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769731 ] } } +, +{ "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.389326, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 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.389369, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "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.388897, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.763014 ] } } +, +{ "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.388854, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759892 ] } } +, +{ "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.396493, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760164 ] } } +, +{ "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.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758400 ] } } +, +{ "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.398081, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "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": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 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.388253, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "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.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429795, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746557 ] } } +, +{ "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.431211, 37.744963 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "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.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736682 ] } } +, +{ "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.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 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.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752089 ] } } +, +{ "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.418551, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.752326 ] } } +, +{ "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.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "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.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.748084 ] } } +, +{ "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.418208, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 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.419624, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 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.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.748356 ] } } +, +{ "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.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +, +{ "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.409797, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "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.413187, 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.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738854 ] } } +, +{ "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.413702, 37.739024 ] } } +, +{ "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.413402, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } +, +{ "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.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430310, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430224, 37.735664 ] } } +, +{ "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.431340, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429366, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728910 ] } } +, +{ "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.431340, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728638 ] } } +, +{ "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.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424731, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735935 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "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.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.721679 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.725617 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 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.415290, 37.733288 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "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.413745, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "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.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726432 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "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.414174, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726500 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722969 ] } } +, +{ "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.723139 ] } } +, +{ "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.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.753073 ] } } +, +{ "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.409110, 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.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408767, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 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.402244, 37.751919 ] } } +, +{ "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.402158, 37.750867 ] } } +, +{ "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.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.747134 ] } } +, +{ "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.742892 ] } } +, +{ "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.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 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.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.739567 ] } } +, +{ "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.406793, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738718 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "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.398853, 37.743911 ] } } +, +{ "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.400484, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751308 ] } } +, +{ "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.396364, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397094, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "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.393961, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 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.392802, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.737191 ] } } +, +{ "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.394691, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 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.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 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.742655 ] } } +, +{ "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.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738107 ] } } +, +{ "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.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391686, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740144 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737972 ] } } +, +{ "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.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737666 ] } } +, +{ "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.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "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.404819, 37.733016 ] } } +, +{ "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.404389, 37.733084 ] } } +, +{ "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.409024, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.727348 ] } } +, +{ "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.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "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.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399497, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731930 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "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.401471, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726567 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726703 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723512 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.723648 ] } } +, +{ "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.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "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 & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "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.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392116, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 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.734035 ] } } +, +{ "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.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391601, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "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.391386, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732949 ] } } +, +{ "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.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "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.398467, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "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.397523, 37.718828 ] } } +, +{ "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.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 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.391472, 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.389627, 37.719948 ] } } +, +{ "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.386923, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746082 ] } } +, +{ "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.387180, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386451, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384477, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "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.382674, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382588, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382846, 37.739736 ] } } +, +{ "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.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381816, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381043, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737700 ] } } +, +{ "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.735867 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387395, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731862 ] } } +, +{ "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.386665, 37.732609 ] } } +, +{ "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.386022, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385077, 37.733220 ] } } +, +{ "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.383575, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734713 ] } } +, +{ "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.384820, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383618, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "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.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382760, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382159, 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.380056, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378983, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "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.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "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.386794, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.726058 ] } } +, +{ "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.375636, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374520, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370229, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "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.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "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.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 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.716452 ] } } +, +{ "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.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715875 ] } } +, +{ "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.448678, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.441211, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 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.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 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.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "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.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "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.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "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.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +] } diff --git a/tests/muni/out/-Z11_-z11_-g2.json b/tests/muni/out/-Z11_-z11_-g2.json new file mode 100644 index 0000000..c94a009 --- /dev/null +++ b/tests/muni/out/-Z11_-z11_-g2.json @@ -0,0 +1,6386 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.431641,37.788049,11", +"description": "tests/muni/out/-Z11_-z11_-g2.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "11", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z11_-g2.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "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.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832497 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530303, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830497 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831446 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "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.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "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.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "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.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 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.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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.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": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "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.720016 ] } } +, +{ "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.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "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.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "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.446661, 37.720933 ] } } +, +{ "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.447562, 37.719711 ] } } +, +{ "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.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "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.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 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.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "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.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "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.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398467, 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.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 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.389627, 37.719948 ] } } +, +{ "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.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714890 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.715026 ] } } +, +{ "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.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713125 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712514 ] } } +, +{ "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.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469363, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 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.705791 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468677, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "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.462626, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713193 ] } } +, +{ "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.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "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.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.710409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459922, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707387 ] } } +, +{ "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.448635, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713973 ] } } +, +{ "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.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714483 ] } } +, +{ "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.432327, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712853 ] } } +, +{ "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.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.428379, 37.717504 ] } } +, +{ "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.711767 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710069 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.713736 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 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.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713260 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708236 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412972, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 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.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.717368 ] } } +, +{ "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.715365 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "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.408981, 37.711733 ] } } +, +{ "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.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.711495 ] } } +, +{ "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.404990, 37.713226 ] } } +, +{ "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.405806, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "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.402158, 37.713872 ] } } +, +{ "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.402029, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709865 ] } } +, +{ "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.406707, 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 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397265, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711020 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } +, +{ "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.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832870 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829548 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803986 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.792253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480521, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807580 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +, +{ "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798560 ] } } +, +{ "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.458034, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "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.801748 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +, +{ "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.443442, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447476, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.791303 ] } } +, +{ "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.441854, 37.803104 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.802833 ] } } +, +{ "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.435203, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 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.437177, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791575 ] } } +, +{ "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.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.796017 ] } } +, +{ "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.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "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.433958, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.790015 ] } } +, +{ "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.509961, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509446, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510819, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508502, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507472, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503095, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503867, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775498 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773564 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773598 ] } } +, +{ "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.503309, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500434, 37.775667 ] } } +, +{ "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.771902 ] } } +, +{ "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.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767899 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 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.509232, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +, +{ "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.506185, 37.762403 ] } } +, +{ "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.506056, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505927, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502623, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499404, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 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.490649, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490220, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "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.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +, +{ "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.492023, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 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.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.783842 ] } } +, +{ "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.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481809, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780111 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778076 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776210 ] } } +, +{ "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.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772716 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764778 ] } } +, +{ "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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495885, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.760978 ] } } +, +{ "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.495627, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496743, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489533, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490306, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753717 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765456 ] } } +, +{ "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.480307, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477345, 37.763692 ] } } +, +{ "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.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.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.759621 ] } } +, +{ "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.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.760164 ] } } +, +{ "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.479749, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "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.476444, 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.506399, 37.752801 ] } } +, +{ "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 ] } } +, +{ "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.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501035, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498889, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501378, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500777, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 37.734578 ] } } +, +{ "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.501721, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494941, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490993, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491250, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486959, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744250 ] } } +, +{ "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.494254, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.740144 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738650 ] } } +, +{ "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.494168, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489791, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 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.487645, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738990 ] } } +, +{ "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.478805, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732949 ] } } +, +{ "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.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.734408 ] } } +, +{ "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.483997, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486444, 37.729656 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724123 ] } } +, +{ "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.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482581, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "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.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "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.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.784622 ] } } +, +{ "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.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780789 ] } } +, +{ "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.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469192, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "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.465458, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "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.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +, +{ "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.470565, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775294 ] } } +, +{ "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.468419, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785199 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "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": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783978 ] } } +, +{ "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.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 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.455716, 37.781535 ] } } +, +{ "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.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777194 ] } } +, +{ "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.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +, +{ "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.466187, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765931 ] } } +, +{ "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.469363, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763828 ] } } +, +{ "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.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "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.472711, 37.759180 ] } } +, +{ "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.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755278 ] } } +, +{ "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.472196, 37.754124 ] } } +, +{ "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.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760435 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "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.465844, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756703 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762403 ] } } +, +{ "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.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460179, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +, +{ "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.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "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.461939, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 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.463827, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 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": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784045 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781875 ] } } +, +{ "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.447991, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "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.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443099, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782349 ] } } +, +{ "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.453313, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449622, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452798, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773395 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "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.445760, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.787030 ] } } +, +{ "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.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "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.437778, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437692, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780518 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.786013 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.781095 ] } } +, +{ "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.432370, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "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.770783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778177 ] } } +, +{ "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.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.769358 ] } } +, +{ "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.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450223, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452970, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770376 ] } } +, +{ "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.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447820, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.765321 ] } } +, +{ "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.445974, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.763048 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 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.443743, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760944 ] } } +, +{ "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.446661, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 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.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "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.444515, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.759825 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767763 ] } } +, +{ "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.768849 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766881 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.762437 ] } } +, +{ "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.767628 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "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.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764507 ] } } +, +{ "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.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 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.438078, 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.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +, +{ "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.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760978 ] } } +, +{ "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.434859, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.759417 ] } } +, +{ "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.432928, 37.760978 ] } } +, +{ "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.757653 ] } } +, +{ "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.434516, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 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.473912, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745132 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } +, +{ "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.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752971 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468591, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "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.471337, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.737598 ] } } +, +{ "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.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468505, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741196 ] } } +, +{ "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.465887, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 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 & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 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.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454429, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746048 ] } } +, +{ "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.457132, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474771, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 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.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "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.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "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.721612 ] } } +, +{ "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.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } +, +{ "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.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "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.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458119, 37.724395 ] } } +, +{ "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.454257, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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.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 & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721951 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "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.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "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.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "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.452455, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747168 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "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.451425, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.739261 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +, +{ "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.440782, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "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.440953, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 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.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436576, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432027, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.746320 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "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.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 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.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 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.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729826 ] } } +, +{ "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.446489, 37.735698 ] } } +, +{ "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.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731659 ] } } +, +{ "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.444644, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "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.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "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.450309, 37.721951 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722155 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "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.446661, 37.720933 ] } } +, +{ "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.447562, 37.719711 ] } } +, +{ "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.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 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.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "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.435718, 37.733933 ] } } +, +{ "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.432370, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "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": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 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.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724327 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.423229, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806359 ] } } +, +{ "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.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.806190 ] } } +, +{ "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.412543, 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.413487, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.808123 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806902 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "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.431040, 37.800595 ] } } +, +{ "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.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798086 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805139 ] } } +, +{ "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 & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 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.429538, 37.793168 ] } } +, +{ "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.426233, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "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.424645, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.796085 ] } } +, +{ "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.422929, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796187 ] } } +, +{ "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.421513, 37.795135 ] } } +, +{ "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.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 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.791168 ] } } +, +{ "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": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.800222 ] } } +, +{ "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.419195, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799713 ] } } +, +{ "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.414989, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.801951 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "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": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795169 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796526 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.792083 ] } } +, +{ "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.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794288 ] } } +, +{ "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.411857, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.795339 ] } } +, +{ "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.411385, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792422 ] } } +, +{ "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.412629, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808258 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806970 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "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.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "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.405763, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "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.399411, 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.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "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.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798560 ] } } +, +{ "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.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796255 ] } } +, +{ "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.409668, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793745 ] } } +, +{ "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.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 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.408681, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "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.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.792795 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794491 ] } } +, +{ "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": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.793338 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.791032 ] } } +, +{ "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.402158, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798933 ] } } +, +{ "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.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "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.395205, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "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.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 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.792728 ] } } +, +{ "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.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.791100 ] } } +, +{ "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.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789472 ] } } +, +{ "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.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 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": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823650 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825345 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367997, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366452, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "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.371173, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364907, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364221, 37.820768 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811886 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811717 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786962 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785063 ] } } +, +{ "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.428980, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.786589 ] } } +, +{ "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.422929, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780111 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431598, 37.775871 ] } } +, +{ "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.776074 ] } } +, +{ "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.426748, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.430782, 37.772173 ] } } +, +{ "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.430224, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.786928 ] } } +, +{ "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": "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.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.779704 ] } } +, +{ "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": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.782655 ] } } +, +{ "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.417436, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.787912 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 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.409797, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +, +{ "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.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.780348 ] } } +, +{ "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.409925, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781196 ] } } +, +{ "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.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.775973 ] } } +, +{ "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.419281, 37.775057 ] } } +, +{ "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.418509, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771766 ] } } +, +{ "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.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429967, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767560 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +, +{ "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.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.764608 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 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.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 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.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761419 ] } } +, +{ "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.421770, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +, +{ "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.419968, 37.768645 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "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.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759825 ] } } +, +{ "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.419109, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761894 ] } } +, +{ "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.418895, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.756601 ] } } +, +{ "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.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.759350 ] } } +, +{ "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.414517, 37.755482 ] } } +, +{ "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.408166, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786352 ] } } +, +{ "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.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.784215 ] } } +, +{ "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.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 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.408338, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "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.401600, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.783062 ] } } +, +{ "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.403488, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 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.408209, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.771563 ] } } +, +{ "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.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779500 ] } } +, +{ "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.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 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.388167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +, +{ "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.395163, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.773191 ] } } +, +{ "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.393060, 37.778754 ] } } +, +{ "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.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "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.405548, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "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.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764846 ] } } +, +{ "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.402630, 37.766033 ] } } +, +{ "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.402716, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399325, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "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.402029, 37.759621 ] } } +, +{ "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.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.754532 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.766881 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769731 ] } } +, +{ "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.389326, 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.389369, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "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.394004, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758094 ] } } +, +{ "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.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429795, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749408 ] } } +, +{ "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.431512, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736682 ] } } +, +{ "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.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "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": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "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.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.748084 ] } } +, +{ "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.418208, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.746761 ] } } +, +{ "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.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 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.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748220 ] } } +, +{ "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.409797, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "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.413187, 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.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430310, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430224, 37.735664 ] } } +, +{ "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.431340, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732202 ] } } +, +{ "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.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.728638 ] } } +, +{ "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.428808, 37.728502 ] } } +, +{ "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.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424731, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.721679 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.725617 ] } } +, +{ "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.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 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.415290, 37.733288 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "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.413745, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "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.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726432 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722969 ] } } +, +{ "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.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "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.409110, 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.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751919 ] } } +, +{ "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.402158, 37.750867 ] } } +, +{ "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.400184, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.747134 ] } } +, +{ "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.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.743334 ] } } +, +{ "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.406707, 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.739702 ] } } +, +{ "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.406793, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738718 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "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": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751308 ] } } +, +{ "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.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397094, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "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.393961, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.737191 ] } } +, +{ "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.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391686, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 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.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } +, +{ "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.409024, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731930 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726567 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726703 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723512 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.723648 ] } } +, +{ "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.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "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": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "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.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392116, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391601, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 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.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "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.398467, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "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.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 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.389627, 37.719948 ] } } +, +{ "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.386923, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386451, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "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.382674, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382846, 37.739736 ] } } +, +{ "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.381816, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737700 ] } } +, +{ "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.735867 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387395, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386022, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385077, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383618, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "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.382760, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382159, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378983, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "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.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "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.386794, 37.726126 ] } } +, +{ "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 & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374520, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370229, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "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.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "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.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 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.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 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.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.717368 ] } } +, +{ "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.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "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.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +] } diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json new file mode 100644 index 0000000..1bcda76 --- /dev/null +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -0,0 +1,24028 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.409668,37.770713,13", +"description": "tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "13", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830497 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "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": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "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.721001 ] } } +, +{ "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.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "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": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "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.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "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.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "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.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "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.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398467, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 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 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.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 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.472796, 37.713125 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +, +{ "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": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "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.456145, 37.715875 ] } } +, +{ "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.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706844 ] } } +, +{ "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.448635, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708915 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.713736 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713260 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708507 ] } } +, +{ "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.418251, 37.707930 ] } } +, +{ "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.412972, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.708270 ] } } +, +{ "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.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715365 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "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.402158, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "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.402415, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 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.405076, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711020 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833717 ] } } +, +{ "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.483568, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829548 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803986 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.792253 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 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.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798289 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447476, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797611 ] } } +, +{ "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": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.791303 ] } } +, +{ "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.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800459 ] } } +, +{ "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.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438722, 37.796763 ] } } +, +{ "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.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "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.436318, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.790015 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509446, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.773327 ] } } +, +{ "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.510819, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "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.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "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.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "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.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760367 ] } } +, +{ "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.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508159, 37.760300 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +, +{ "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.505884, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490649, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777872 ] } } +, +{ "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.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.771936 ] } } +, +{ "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.492023, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.772513 ] } } +, +{ "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.485328, 37.783842 ] } } +, +{ "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": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782078 ] } } +, +{ "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.484641, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.782248 ] } } +, +{ "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.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776448 ] } } +, +{ "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.482452, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "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.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495885, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496743, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753717 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477345, 37.763692 ] } } +, +{ "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.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761758 ] } } +, +{ "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.476573, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "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": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501035, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498889, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736139 ] } } +, +{ "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.498331, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501378, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731625 ] } } +, +{ "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.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491250, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486959, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494512, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.733797 ] } } +, +{ "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.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726364 ] } } +, +{ "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.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780789 ] } } +, +{ "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.469192, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "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.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 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.464085, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "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.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756703 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465587, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "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.464170, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460179, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "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.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443099, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449622, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773259 ] } } +, +{ "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.447219, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.788014 ] } } +, +{ "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.439752, 37.785334 ] } } +, +{ "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.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783435 ] } } +, +{ "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.439108, 37.781841 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775498 ] } } +, +{ "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.433228, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452712, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "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.447820, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765253 ] } } +, +{ "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.447004, 37.763048 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "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.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "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.446361, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.759825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.767288 ] } } +, +{ "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.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.759417 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760978 ] } } +, +{ "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 & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468591, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "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.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736410 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468505, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "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.465973, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.747813 ] } } +, +{ "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.454085, 37.745709 ] } } +, +{ "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.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734781 ] } } +, +{ "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.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 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.474384, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 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.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 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.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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.456059, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747168 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +, +{ "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.442498, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "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.440953, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436576, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432027, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "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.434473, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "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.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719711 ] } } +, +{ "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.450008, 37.722155 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "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.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "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.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733424 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725753 ] } } +, +{ "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.442112, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "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": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724327 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.808055 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798086 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 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 & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "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.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "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.426276, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "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.794932 ] } } +, +{ "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.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.793982 ] } } +, +{ "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.421770, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794220 ] } } +, +{ "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": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.801951 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800222 ] } } +, +{ "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.412028, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.793847 ] } } +, +{ "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": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790896 ] } } +, +{ "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.417479, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415633, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "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.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411084, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793677 ] } } +, +{ "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.412629, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "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.410998, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "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.409496, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797882 ] } } +, +{ "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": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } +, +{ "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.409153, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "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.404389, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "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.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406964, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794050 ] } } +, +{ "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.400312, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "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.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "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.401257, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +, +{ "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.397051, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.795034 ] } } +, +{ "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.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "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.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "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.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390227, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +, +{ "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.388511, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824192 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823650 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367997, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "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.371044, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364221, 37.820768 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811886 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "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.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784927 ] } } +, +{ "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.424302, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780111 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786827 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "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.418551, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET 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 & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "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.416921, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767560 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.768883 ] } } +, +{ "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.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "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.420053, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761792 ] } } +, +{ "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.417092, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.759350 ] } } +, +{ "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.408166, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.784215 ] } } +, +{ "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.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +, +{ "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.401643, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.783978 ] } } +, +{ "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.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 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.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "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.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772920 ] } } +, +{ "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.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "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.404733, 37.766067 ] } } +, +{ "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 & 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 & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.767322 ] } } +, +{ "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.403445, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "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.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759451 ] } } +, +{ "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 & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.754532 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.762708 ] } } +, +{ "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.390914, 37.766881 ] } } +, +{ "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.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } +, +{ "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.418551, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "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.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738854 ] } } +, +{ "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.413402, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430224, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733492 ] } } +, +{ "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.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "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.431254, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735935 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.725617 ] } } +, +{ "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.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726500 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751919 ] } } +, +{ "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.400184, 37.750867 ] } } +, +{ "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.742892 ] } } +, +{ "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.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "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.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "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.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "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.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "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.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737666 ] } } +, +{ "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.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.733016 ] } } +, +{ "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.408853, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399497, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726567 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723512 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 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 & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391601, 37.732304 ] } } +, +{ "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.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } +, +{ "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.392888, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "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.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386451, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382846, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381816, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381043, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736546 ] } } +, +{ "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.387352, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "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": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382159, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "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.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "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.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "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.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716723 ] } } +, +{ "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.388296, 37.718251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523458, 37.831667 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530282, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523243, 37.831429 ] } } +, +{ "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.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 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.483225, 37.718624 ] } } +, +{ "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.479920, 37.719609 ] } } +, +{ "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.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475393, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 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.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451789, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451661, 37.719795 ] } } +, +{ "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.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "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.480114, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480242, 37.714500 ] } } +, +{ "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.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709135 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717453 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716027 ] } } +, +{ "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.715229 ] } } +, +{ "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.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717385 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713006 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "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.469642, 37.714330 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714296 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712497 ] } } +, +{ "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.469471, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469342, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467239, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "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.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.705774 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707064 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714364 ] } } +, +{ "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.462604, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462347, 37.713193 ] } } +, +{ "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.462261, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459171, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461574, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460287, 37.710137 ] } } +, +{ "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.456081, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 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.716435 ] } } +, +{ "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.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "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.456124, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454793, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705995 ] } } +, +{ "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.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.706623 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707370 ] } } +, +{ "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.448657, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448614, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450373, 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.453163, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448356, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 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.442670, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.453334, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.441189, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.716418 ] } } +, +{ "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.439623, 37.715688 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715722 ] } } +, +{ "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.437606, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712463 ] } } +, +{ "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.711682 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437971, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714262 ] } } +, +{ "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.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 & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436640, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.709984 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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 & 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.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.710578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 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.447047, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509596, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509425, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510326, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509854, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779755 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "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.500691, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 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.503846, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.775498 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773547 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505691, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503545, 37.771749 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.771783 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500412, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 37.775515 ] } } +, +{ "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.771885 ] } } +, +{ "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.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 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.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509081, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760181 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506120, 37.764049 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506163, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505991, 37.762216 ] } } +, +{ "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.508137, 37.760283 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508051, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508008, 37.760283 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760520 ] } } +, +{ "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.505820, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506077, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505863, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505906, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502859, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.760656 ] } } +, +{ "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.499382, 37.760775 ] } } +, +{ "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.499168, 37.760690 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.779449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496421, 37.779687 ] } } +, +{ "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.494404, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492344, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.781552 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.779755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493417, 37.779585 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491443, 37.781671 ] } } +, +{ "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.783587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490628, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489984, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489297, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486894, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488053, 37.779873 ] } } +, +{ "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.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "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.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492988, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772089 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776125 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489641, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489426, 37.772411 ] } } +, +{ "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.487280, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.783825 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485049, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783961 ] } } +, +{ "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.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "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.484984, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.780230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481787, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780094 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "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.479856, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782231 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780467 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.778296 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776193 ] } } +, +{ "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": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482431, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774565 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484534, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772699 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772360 ] } } +, +{ "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.481358, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480285, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477925, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480628, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772869 ] } } +, +{ "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.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764761 ] } } +, +{ "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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764897 ] } } +, +{ "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.495863, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760927 ] } } +, +{ "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.495713, 37.759146 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761029 ] } } +, +{ "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.495606, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495477, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "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.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489512, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "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.486765, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753497 ] } } +, +{ "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.489469, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487323, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765439 ] } } +, +{ "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.480285, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477753, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477624, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765168 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477324, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763438 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 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.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.761589 ] } } +, +{ "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.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483032, 37.753887 ] } } +, +{ "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.761504 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480114, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759604 ] } } +, +{ "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.477195, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.760164 ] } } +, +{ "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.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476552, 37.757874 ] } } +, +{ "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.479727, 37.755906 ] } } +, +{ "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.480886, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754345 ] } } +, +{ "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.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.754124 ] } } +, +{ "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.506378, 37.752784 ] } } +, +{ "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 ] } } +, +{ "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.505498, 37.752852 ] } } +, +{ "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.504468, 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.503588, 37.753140 ] } } +, +{ "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.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507021, 37.747355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745455 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506721, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501013, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498868, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753225 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747423 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501957, 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.499533, 37.747694 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738090 ] } } +, +{ "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.504275, 37.737989 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742129 ] } } +, +{ "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.735579 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735545 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735613 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501357, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734578 ] } } +, +{ "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.501700, 37.730675 ] } } +, +{ "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.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731608 ] } } +, +{ "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.726771 ] } } +, +{ "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.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495434, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495134, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 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.494876, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747592 ] } } +, +{ "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.497323, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493117, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490971, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491229, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488825, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486937, 37.748135 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486680, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744233 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494490, 37.743995 ] } } +, +{ "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.494662, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494361, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742366 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.740127 ] } } +, +{ "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.494297, 37.738633 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494104, 37.738396 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493932, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742502 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489769, 37.742366 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487581, 37.744284 ] } } +, +{ "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.487345, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487624, 37.742468 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487409, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487237, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484791, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748390 ] } } +, +{ "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.481315, 37.748475 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "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.475908, 37.748543 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485478, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733916 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496850, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496593, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733373 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493932, 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.493632, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730352 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734153 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486250, 37.734391 ] } } +, +{ "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.483976, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486422, 37.729639 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.734663 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479641, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734764 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728010 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730013 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726075 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724242 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726992 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482560, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "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.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720746 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478826, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 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": "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.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475522, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.784605 ] } } +, +{ "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.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.780535 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780586 ] } } +, +{ "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.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469170, 37.784673 ] } } +, +{ "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 St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466724, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.783147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 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.472432, 37.776804 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776905 ] } } +, +{ "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.470543, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472003, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470543, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468183, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777211 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775277 ] } } +, +{ "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.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467625, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464492, 37.784690 ] } } +, +{ "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.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462304, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.783028 ] } } +, +{ "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": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456853, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785673 ] } } +, +{ "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.458870, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455223, 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.784130 ] } } +, +{ "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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.783079 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "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.455695, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.779008 ] } } +, +{ "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.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463934, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773547 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773853 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455051, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774802 ] } } +, +{ "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.454536, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453892, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.770867 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765473 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "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.470350, 37.762081 ] } } +, +{ "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.466166, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765914 ] } } +, +{ "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.469342, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "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.466252, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464621, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764116 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764116 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.763947 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 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.762149 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762115 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "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.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756313 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755261 ] } } +, +{ "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.472174, 37.754124 ] } } +, +{ "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.758315 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758213 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760418 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758552 ] } } +, +{ "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.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756686 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756517 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465565, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462475, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "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.464364, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462862, 37.762403 ] } } +, +{ "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.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460158, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460759, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "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.457969, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.764456 ] } } +, +{ "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.766050 ] } } +, +{ "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.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456982, 37.763811 ] } } +, +{ "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.454922, 37.766220 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454321, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.758620 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463892, 37.758484 ] } } +, +{ "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.461917, 37.757738 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463591, 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.463806, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756924 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459986, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 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": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451961, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450287, 37.784385 ] } } +, +{ "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.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781858 ] } } +, +{ "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.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785249 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.784537 ] } } +, +{ "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.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.782519 ] } } +, +{ "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.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.782333 ] } } +, +{ "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.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778025 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778364 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 37.778245 ] } } +, +{ "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.449300, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452862, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452776, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.773615 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449472, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 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.446918, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777584 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775684 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 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.446296, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445266, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447326, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.773954 ] } } +, +{ "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.445738, 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.774209 ] } } +, +{ "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.442648, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440331, 37.787013 ] } } +, +{ "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.439945, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 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.438099, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439387, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783180 ] } } +, +{ "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.781620 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438829, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.780738 ] } } +, +{ "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.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788064 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "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.786165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780942 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.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.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779178 ] } } +, +{ "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.441533, 37.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777652 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.775074 ] } } +, +{ "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.441275, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "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.774735 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771308 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778161 ] } } +, +{ "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.436469, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 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.434194, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771241 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771783 ] } } +, +{ "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.452862, 37.769341 ] } } +, +{ "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.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766423 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769612 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769443 ] } } +, +{ "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.450631, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448485, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452948, 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.452605, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452691, 37.765338 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.764608 ] } } +, +{ "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.449923, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449815, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765575 ] } } +, +{ "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.449858, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769951 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.770325 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770359 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770223 ] } } +, +{ "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.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447798, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.763031 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 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.443721, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763743 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763743 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449000, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760927 ] } } +, +{ "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.446640, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 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.445953, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 37.758671 ] } } +, +{ "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.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.761216 ] } } +, +{ "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.445095, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759808 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "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.443442, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755499 ] } } +, +{ "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.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767746 ] } } +, +{ "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.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766508 ] } } +, +{ "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.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765372 ] } } +, +{ "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.437499, 37.762420 ] } } +, +{ "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": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769409 ] } } +, +{ "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.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764286 ] } } +, +{ "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.435267, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435310, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762624 ] } } +, +{ "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.435396, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762556 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441103, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "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.438056, 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.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757568 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.757416 ] } } +, +{ "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.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753531 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.754379 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760961 ] } } +, +{ "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.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.759400 ] } } +, +{ "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.757789 ] } } +, +{ "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.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756109 ] } } +, +{ "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.434494, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474105, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473848, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.748729 ] } } +, +{ "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.473719, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470758, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749052 ] } } +, +{ "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.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.752954 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750867 ] } } +, +{ "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.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743215 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741213 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 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.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470200, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739210 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736495 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736393 ] } } +, +{ "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.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468483, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741111 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466123, 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 Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465866, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740941 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740771 ] } } +, +{ "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.465780, 37.740805 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 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.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739855 ] } } +, +{ "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.466788, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461360, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 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.455866, 37.753090 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454407, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458827, 37.747915 ] } } +, +{ "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.459042, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.746031 ] } } +, +{ "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.457111, 37.745387 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457197, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455609, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455566, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453849, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "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.740093 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739210 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744165 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.744012 ] } } +, +{ "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.455781, 37.743486 ] } } +, +{ "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.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742876 ] } } +, +{ "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.453957, 37.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.735053 ] } } +, +{ "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.734629 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 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.734323 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.731201 ] } } +, +{ "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.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469599, 37.734866 ] } } +, +{ "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.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.734866 ] } } +, +{ "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.465522, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "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.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728400 ] } } +, +{ "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.467582, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "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.721119 ] } } +, +{ "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.475114, 37.721255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721085 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720950 ] } } +, +{ "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.721595 ] } } +, +{ "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.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475393, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.721493 ] } } +, +{ "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.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727229 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "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.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 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.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.729979 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733610 ] } } +, +{ "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.458527, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457669, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "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.457669, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724921 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719999 ] } } +, +{ "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.461338, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458098, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458355, 37.724276 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.724276 ] } } +, +{ "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.456253, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454236, 37.723462 ] } } +, +{ "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.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.459085, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "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.456253, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721764 ] } } +, +{ "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.456253, 37.719965 ] } } +, +{ "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.719897 ] } } +, +{ "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.719999 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751291 ] } } +, +{ "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.452047, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "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.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451918, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.745013 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749968 ] } } +, +{ "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.447927, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747932 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746846 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747050 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747151 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746710 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451403, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 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.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "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.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450373, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738192 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.741399 ] } } +, +{ "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.448013, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736801 ] } } +, +{ "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": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442477, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750765 ] } } +, +{ "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.749086 ] } } +, +{ "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.440524, 37.750986 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.749323 ] } } +, +{ "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.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436554, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "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.751088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752784 ] } } +, +{ "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.434065, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434194, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 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": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436082, 37.747864 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.747083 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.746303 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746269 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "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.738294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 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": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 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.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.740195 ] } } +, +{ "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.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734357 ] } } +, +{ "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.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731421 ] } } +, +{ "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.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452304, 37.727637 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "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.449172, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "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.448785, 37.729809 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.731642 ] } } +, +{ "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.444623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "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.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723054 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "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.451789, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451661, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720644 ] } } +, +{ "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.450287, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.722138 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.721051 ] } } +, +{ "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.447240, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.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.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 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.446768, 37.720712 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720712 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720440 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.720474 ] } } +, +{ "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.447155, 37.719863 ] } } +, +{ "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.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720644 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720576 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720576 ] } } +, +{ "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": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 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.444794, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 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.445266, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729011 ] } } +, +{ "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.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731404 ] } } +, +{ "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.435718, 37.733933 ] } } +, +{ "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.433851, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.733339 ] } } +, +{ "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.434108, 37.733407 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729605 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725906 ] } } +, +{ "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.442391, 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.441211, 37.727161 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "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.438550, 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.437499, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.723835 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724310 ] } } +, +{ "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.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.726177 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.722392 ] } } +, +{ "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.432971, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.721646 ] } } +, +{ "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.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.772021 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761233 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746540 ] } } +, +{ "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.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "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.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "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.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "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.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717453 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717385 ] } } +, +{ "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.456081, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.717742 ] } } +, +{ "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.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448614, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.430139, 37.718183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 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.508738, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502429, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 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.483847, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833158 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832853 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829531 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803969 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480500, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792100 ] } } +, +{ "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.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806580 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 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.467089, 37.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466938, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460372, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798442 ] } } +, +{ "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.458012, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 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.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.803867 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454364, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802307 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.797967 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798272 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455008, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453420, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799052 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799391 ] } } +, +{ "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.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798069 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "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.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804562 ] } } +, +{ "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.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803664 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800985 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.800052 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451532, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445524, 37.795763 ] } } +, +{ "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.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447412, 37.790727 ] } } +, +{ "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.447047, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441103, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439687, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.799306 ] } } +, +{ "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.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796882 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796882 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802833 ] } } +, +{ "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.802409 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804884 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805139 ] } } +, +{ "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.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800917 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.800748 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434709, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437069, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "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.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432606, 37.797526 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442005, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438700, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.791575 ] } } +, +{ "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.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795865 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 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.436297, 37.794067 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "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.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791727 ] } } +, +{ "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.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786911 ] } } +, +{ "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.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440331, 37.787013 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788064 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801528 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.428980, 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.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718947 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "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.425783, 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.718913 ] } } +, +{ "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.411277, 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.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 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.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 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.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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 & 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.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 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.428358, 37.717487 ] } } +, +{ "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.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711750 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711885 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718302 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710731 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710052 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.713719 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 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.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.709000 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712429 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.712242 ] } } +, +{ "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.415504, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415912, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718132 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715043 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.711682 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.710986 ] } } +, +{ "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.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710595 ] } } +, +{ "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.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709882 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.708219 ] } } +, +{ "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.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707913 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707709 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412951, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "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.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716672 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.716604 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "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": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715348 ] } } +, +{ "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.409067, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.713345 ] } } +, +{ "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.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710018 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709916 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "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.404969, 37.713226 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716367 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.713855 ] } } +, +{ "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.402008, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402437, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 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.400935, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712021 ] } } +, +{ "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.398961, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709865 ] } } +, +{ "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.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "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.405055, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "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.404861, 37.709101 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397244, 37.711223 ] } } +, +{ "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.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.711257 ] } } +, +{ "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.389219, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714398 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.786165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.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.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 37.778551 ] } } +, +{ "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.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "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.767526 ] } } +, +{ "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.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "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": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 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.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729605 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.721646 ] } } +, +{ "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.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 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.408659, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.408316, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789082 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 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.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 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.785046 ] } } +, +{ "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.428958, 37.781926 ] } } +, +{ "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.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786131 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786589 ] } } +, +{ "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.422907, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "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.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784673 ] } } +, +{ "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.421148, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783214 ] } } +, +{ "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.421083, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.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.426727, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426341, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.772021 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425225, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423036, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773819 ] } } +, +{ "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.773836 ] } } +, +{ "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.770969 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420976, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.771783 ] } } +, +{ "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.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "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.420654, 37.785860 ] } } +, +{ "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.419174, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782875 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783197 ] } } +, +{ "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.419281, 37.782197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779704 ] } } +, +{ "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.418702, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.783282 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.782638 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785555 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414281, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413166, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.409775, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781078 ] } } +, +{ "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.412457, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "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.409904, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410247, 37.782333 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781179 ] } } +, +{ "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.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778703 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778194 ] } } +, +{ "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.778398 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "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.419388, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "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.418659, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777720 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775956 ] } } +, +{ "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.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774938 ] } } +, +{ "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.418616, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.773005 ] } } +, +{ "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.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774582 ] } } +, +{ "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.774226 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415397, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415011, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776227 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771749 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 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.412651, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767780 ] } } +, +{ "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.429001, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767204 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767780 ] } } +, +{ "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.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428529, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.764744 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.770155 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.768391 ] } } +, +{ "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.766797 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421792, 37.763099 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 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.427928, 37.758281 ] } } +, +{ "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.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757467 ] } } +, +{ "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.426941, 37.756652 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.754616 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761402 ] } } +, +{ "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.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.761436 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759875 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758756 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757161 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755566 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 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.419946, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768221 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766695 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "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.419689, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765270 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 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.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763845 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.769680 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.769680 ] } } +, +{ "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.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "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.419109, 37.758179 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761877 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.756601 ] } } +, +{ "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.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758824 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.759333 ] } } +, +{ "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.414496, 37.755465 ] } } +, +{ "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.408402, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786335 ] } } +, +{ "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.409518, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783927 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408230, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786403 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786606 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.785775 ] } } +, +{ "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.405913, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.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.408316, 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.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782740 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.782604 ] } } +, +{ "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.404754, 37.781451 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "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.787725 ] } } +, +{ "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.401578, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403939, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399046, 37.786216 ] } } +, +{ "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.400849, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398789, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.783045 ] } } +, +{ "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.403467, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780399 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773547 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.774599 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774395 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405913, 37.771563 ] } } +, +{ "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.402158, 37.778924 ] } } +, +{ "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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401965, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771715 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "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.398124, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785758 ] } } +, +{ "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.396600, 37.785521 ] } } +, +{ "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.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784198 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779483 ] } } +, +{ "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.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "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.388146, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784605 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391965, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780637 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389562, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775447 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777279 ] } } +, +{ "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.395141, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777041 ] } } +, +{ "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.394884, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776295 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772903 ] } } +, +{ "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.393038, 37.778737 ] } } +, +{ "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.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.776193 ] } } +, +{ "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.389734, 37.773005 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389734, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771173 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766355 ] } } +, +{ "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.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765711 ] } } +, +{ "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.407544, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405527, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404454, 37.764574 ] } } +, +{ "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.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403166, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767475 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.764829 ] } } +, +{ "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.764829 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764829 ] } } +, +{ "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.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.766016 ] } } +, +{ "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.402694, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401536, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763574 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399304, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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 & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406857, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "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.406921, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754311 ] } } +, +{ "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.404068, 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.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759570 ] } } +, +{ "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.402179, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759604 ] } } +, +{ "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 & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.758111 ] } } +, +{ "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.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753395 ] } } +, +{ "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.399991, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "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.400591, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.766508 ] } } +, +{ "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.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397587, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.762590 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.762708 ] } } +, +{ "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.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770528 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769731 ] } } +, +{ "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.389305, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 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.389369, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766593 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766593 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389004, 37.767204 ] } } +, +{ "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.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "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.388875, 37.764252 ] } } +, +{ "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.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388961, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763370 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762997 ] } } +, +{ "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.388833, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761165 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759875 ] } } +, +{ "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.396472, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.760147 ] } } +, +{ "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.396450, 37.759994 ] } } +, +{ "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.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760045 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395141, 37.758383 ] } } +, +{ "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.398059, 37.757467 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753565 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754718 ] } } +, +{ "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": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393982, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758043 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758043 ] } } +, +{ "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.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758179 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.758026 ] } } +, +{ "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.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755024 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755702 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755431 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755329 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429774, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 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.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749187 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746540 ] } } +, +{ "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.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "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.426512, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.742231 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "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.428958, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427585, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.743826 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422178, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 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.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739821 ] } } +, +{ "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.424173, 37.739753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739007 ] } } +, +{ "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.424216, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752072 ] } } +, +{ "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.418530, 37.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750680 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.752326 ] } } +, +{ "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.416170, 37.752462 ] } } +, +{ "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.749018 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416084, 37.749119 ] } } +, +{ "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.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.748068 ] } } +, +{ "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.418187, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 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.419603, 37.745930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 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.414045, 37.752767 ] } } +, +{ "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.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413895, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748356 ] } } +, +{ "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.413595, 37.748390 ] } } +, +{ "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.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.746880 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.748407 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +, +{ "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.409775, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744301 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 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.418466, 37.739312 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.739041 ] } } +, +{ "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.413166, 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.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.741247 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "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.413681, 37.739007 ] } } +, +{ "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.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737174 ] } } +, +{ "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.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739584 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "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.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429345, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428014, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429731, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "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.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728621 ] } } +, +{ "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.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424710, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735918 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728723 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.724005 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429473, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "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.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721561 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427628, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720916 ] } } +, +{ "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.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718947 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725091 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423251, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 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.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720406 ] } } +, +{ "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.425783, 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": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417028, 37.735647 ] } } +, +{ "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.415698, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 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.415268, 37.733271 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416127, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "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.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 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.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.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.729945 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414410, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726415 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718913 ] } } +, +{ "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.414153, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.726483 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722952 ] } } +, +{ "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.723122 ] } } +, +{ "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.412393, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.753073 ] } } +, +{ "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.409089, 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.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408745, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 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.402244, 37.751902 ] } } +, +{ "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.402136, 37.750850 ] } } +, +{ "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.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400162, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747134 ] } } +, +{ "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.742876 ] } } +, +{ "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.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 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.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.739550 ] } } +, +{ "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.406771, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737955 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.741077 ] } } +, +{ "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.398832, 37.743911 ] } } +, +{ "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.400463, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739142 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739567 ] } } +, +{ "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.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752173 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751291 ] } } +, +{ "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.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396901, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752513 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747355 ] } } +, +{ "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.393939, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 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.392781, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.737174 ] } } +, +{ "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.394691, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394111, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 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.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740704 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 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.742638 ] } } +, +{ "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.388167, 37.742451 ] } } +, +{ "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.391429, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391279, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738090 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391665, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388918, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "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.389820, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.737955 ] } } +, +{ "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.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "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.404819, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733067 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.727331 ] } } +, +{ "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.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "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.401085, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399476, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.731913 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 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.403681, 37.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727535 ] } } +, +{ "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.403252, 37.727755 ] } } +, +{ "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.401450, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730386 ] } } +, +{ "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.401021, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400892, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.726550 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726686 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.723631 ] } } +, +{ "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.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "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.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726381 ] } } +, +{ "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.401879, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723563 ] } } +, +{ "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.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401407, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721493 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.395935, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735036 ] } } +, +{ "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.392673, 37.735036 ] } } +, +{ "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.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392094, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 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.734035 ] } } +, +{ "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.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391579, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732287 ] } } +, +{ "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.391365, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 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.390184, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389047, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732932 ] } } +, +{ "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.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392867, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729232 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729300 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728095 ] } } +, +{ "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.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724174 ] } } +, +{ "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.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.398446, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "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.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722647 ] } } +, +{ "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.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.722036 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721425 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 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.391472, 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.389605, 37.719931 ] } } +, +{ "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.386901, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755397 ] } } +, +{ "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.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387674, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752818 ] } } +, +{ "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.387588, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387459, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748950 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745862 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746065 ] } } +, +{ "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.387159, 37.741416 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386429, 37.741959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741145 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384455, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "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.382653, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382567, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382824, 37.739719 ] } } +, +{ "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.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381022, 37.738633 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737683 ] } } +, +{ "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.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387373, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387331, 37.731862 ] } } +, +{ "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.386644, 37.732592 ] } } +, +{ "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.386000, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "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.383554, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734696 ] } } +, +{ "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.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383339, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729571 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383597, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382696, 37.730165 ] } } +, +{ "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.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729436 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734187 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382138, 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.380035, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377245, 37.732932 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730590 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728689 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380207, 37.727993 ] } } +, +{ "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.377031, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726126 ] } } +, +{ "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.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374499, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 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.428358, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718302 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "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.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805139 ] } } +, +{ "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.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432606, 37.797526 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.806173 ] } } +, +{ "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.417607, 37.805495 ] } } +, +{ "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.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808038 ] } } +, +{ "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.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "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.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806512 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801528 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801833 ] } } +, +{ "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.426233, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800951 ] } } +, +{ "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.427392, 37.798069 ] } } +, +{ "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.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804851 ] } } +, +{ "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.425010, 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.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423508, 37.805257 ] } } +, +{ "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.423809, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.802443 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "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.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423251, 37.803664 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 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.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "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.422307, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798815 ] } } +, +{ "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.422435, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.429516, 37.793152 ] } } +, +{ "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.426212, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427156, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "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.424624, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.796085 ] } } +, +{ "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.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 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.421556, 37.795288 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.795118 ] } } +, +{ "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.423379, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793830 ] } } +, +{ "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.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794203 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.791049 ] } } +, +{ "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.791151 ] } } +, +{ "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.422307, 37.791388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422349, 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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420847, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420847, 37.790506 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789523 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "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.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 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.801019 ] } } +, +{ "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.419345, 37.800222 ] } } +, +{ "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.420547, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.800188 ] } } +, +{ "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.419152, 37.799188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.797407 ] } } +, +{ "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.417564, 37.799459 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799696 ] } } +, +{ "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.414968, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415011, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803291 ] } } +, +{ "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.413659, 37.802613 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802104 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.802782 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.801188 ] } } +, +{ "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.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800917 ] } } +, +{ "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.412586, 37.799968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412221, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.800510 ] } } +, +{ "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.410655, 37.800205 ] } } +, +{ "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.409947, 37.800426 ] } } +, +{ "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.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796509 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795390 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795559 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418058, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792880 ] } } +, +{ "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.416298, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793830 ] } } +, +{ "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.416041, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "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.420547, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790879 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795051 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794271 ] } } +, +{ "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.411835, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796390 ] } } +, +{ "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.411535, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795458 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794644 ] } } +, +{ "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.411535, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794542 ] } } +, +{ "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.411878, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792405 ] } } +, +{ "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.414110, 37.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.806105 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807360 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.806953 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406042, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.803291 ] } } +, +{ "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.408059, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803020 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 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.406471, 37.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.801782 ] } } +, +{ "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.409282, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799391 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.797204 ] } } +, +{ "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.797865 ] } } +, +{ "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.405977, 37.800917 ] } } +, +{ "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.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797340 ] } } +, +{ "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.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.805156 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803935 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402952, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802172 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "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.399390, 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.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403595, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797560 ] } } +, +{ "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.398939, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798543 ] } } +, +{ "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.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408273, 37.796255 ] } } +, +{ "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.409647, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.793050 ] } } +, +{ "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.409260, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 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.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.794712 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "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.404282, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792032 ] } } +, +{ "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.409089, 37.792134 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792134 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.791100 ] } } +, +{ "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.407544, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790167 ] } } +, +{ "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.408659, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.408316, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406943, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789828 ] } } +, +{ "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.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792778 ] } } +, +{ "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.401557, 37.794033 ] } } +, +{ "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.401321, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.793321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400119, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791015 ] } } +, +{ "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.402136, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792032 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "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.399776, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789082 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798984 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.799561 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798917 ] } } +, +{ "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.396171, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797085 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795424 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397544, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.793542 ] } } +, +{ "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.396643, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793152 ] } } +, +{ "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.396128, 37.793508 ] } } +, +{ "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.395184, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795017 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795118 ] } } +, +{ "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.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET 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": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.794067 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "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.393467, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393425, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793219 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791659 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.789930 ] } } +, +{ "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.396343, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395484, 37.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.792405 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "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.393339, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "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.394261, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789726 ] } } +, +{ "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.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.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 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.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392566, 37.791185 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792168 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390206, 37.790812 ] } } +, +{ "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.389905, 37.790574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388790, 37.789455 ] } } +, +{ "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.388554, 37.789692 ] } } +, +{ "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.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377417, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 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.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375658, 37.824480 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824175 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823260 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "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.823531 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 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": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370079, 37.825209 ] } } +, +{ "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.823633 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825328 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818514 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366345, 37.820006 ] } } +, +{ "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.371151, 37.813073 ] } } +, +{ "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.371023, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813157 ] } } +, +{ "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.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822243 ] } } +, +{ "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.364843, 37.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363384, 37.810513 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "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.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.408402, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "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.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "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.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.786742 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.527256, 37.832590 ] } } +, +{ "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.523458, 37.831667 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829065 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825040 ] } } +, +{ "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.830379 ] } } +, +{ "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.831345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.483225, 37.718616 ] } } +, +{ "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.475640, 37.719108 ] } } +, +{ "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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485124, 37.714780 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716341 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711537 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480232, 37.714491 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477442, 37.717496 ] } } +, +{ "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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715849 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715985 ] } } +, +{ "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.709135 ] } } +, +{ "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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 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.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752844 ] } } +, +{ "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.504457, 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.503577, 37.753132 ] } } +, +{ "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.507011, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745446 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506710, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747465 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747431 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.747296 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745599 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745429 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.501947, 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.747686 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497634, 37.747635 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504843, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504672, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504715, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504500, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504543, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504586, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738150 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504414, 37.739830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505316, 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.504275, 37.737980 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736130 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502612, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502354, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500209, 37.742027 ] } } +, +{ "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.498063, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735570 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735536 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735401 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735604 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "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.734136 ] } } +, +{ "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.499222, 37.731608 ] } } +, +{ "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.726763 ] } } +, +{ "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.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.495134, 37.753302 ] } } +, +{ "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.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 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.494876, 37.749569 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747584 ] } } +, +{ "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.495370, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747771 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493106, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747838 ] } } +, +{ "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.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490960, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491218, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748008 ] } } +, +{ "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.487935, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486926, 37.748127 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486669, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487677, 37.746167 ] } } +, +{ "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.743987 ] } } +, +{ "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.494651, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494222, 37.742273 ] } } +, +{ "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.492967, 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.494394, 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.494286, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494093, 37.738387 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494158, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493922, 37.736546 ] } } +, +{ "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.489759, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487656, 37.744513 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487570, 37.744275 ] } } +, +{ "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.487345, 37.742596 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487624, 37.742468 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487398, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487227, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487141, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 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.484781, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484587, 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.748466 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748364 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 37.748551 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479438, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.475908, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742545 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 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.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "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.496829, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496850, 37.733602 ] } } +, +{ "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.496647, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493793, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733738 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493685, 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.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493664, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734145 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 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.489265, 37.734247 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483965, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "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.486411, 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.480071, 37.734654 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479631, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734756 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728002 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478493, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730428 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726067 ] } } +, +{ "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.484899, 37.724234 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726983 ] } } +, +{ "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.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483064, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482549, 37.721841 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483085, 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.483225, 37.718616 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.720737 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725956 ] } } +, +{ "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.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "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.480907, 37.720687 ] } } +, +{ "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.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.719609 ] } } +, +{ "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.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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 & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475296, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721179 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509950, 37.779916 ] } } +, +{ "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.779780 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512053, 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.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510251, 37.775014 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 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.773658 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509886, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "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.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507397, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504114, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779746 ] } } +, +{ "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.504243, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779560 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784987 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781095 ] } } +, +{ "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.779051 ] } } +, +{ "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.503846, 37.775354 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503620, 37.775489 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773539 ] } } +, +{ "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.771486 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505680, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503545, 37.771741 ] } } +, +{ "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.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.779153 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775642 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 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.500348, 37.771885 ] } } +, +{ "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.499919, 37.771792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510294, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510465, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510058, 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.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509081, 37.760342 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "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.764193 ] } } +, +{ "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.506120, 37.764040 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506152, 37.762378 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505981, 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.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508041, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508008, 37.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506024, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760495 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760495 ] } } +, +{ "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.506056, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505852, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505895, 37.758663 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505723, 37.758493 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754930 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754761 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502590, 37.760647 ] } } +, +{ "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.499372, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760749 ] } } +, +{ "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.499146, 37.760647 ] } } +, +{ "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.496411, 37.779678 ] } } +, +{ "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.494404, 37.781646 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492344, 37.782002 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781747 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781510 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493364, 37.781544 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779695 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779746 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493407, 37.779577 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493385, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 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.490520, 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.490617, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489973, 37.779967 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783664 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489297, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "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.488053, 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.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493256, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493085, 37.777694 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494587, 37.775905 ] } } +, +{ "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.496797, 37.771927 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496346, 37.772080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771978 ] } } +, +{ "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.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777745 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776032 ] } } +, +{ "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.489920, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489630, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489415, 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.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487270, 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.485145, 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.485296, 37.783816 ] } } +, +{ "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.784011 ] } } +, +{ "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.484856, 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.481669, 37.784105 ] } } +, +{ "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.484984, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484716, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.780255 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779984 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779933 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481787, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482699, 37.780085 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478451, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780459 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 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.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484695, 37.778288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484566, 37.776422 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484373, 37.776193 ] } } +, +{ "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.776337 ] } } +, +{ "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.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772606 ] } } +, +{ "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.484083, 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.481347, 37.772767 ] } } +, +{ "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.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477914, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480618, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 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.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 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.495381, 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.494715, 37.764761 ] } } +, +{ "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.764736 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764888 ] } } +, +{ "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.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760834 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.760783 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.760919 ] } } +, +{ "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.759138 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 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.495595, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757034 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495466, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495273, 37.755168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489737, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 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.486765, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765227 ] } } +, +{ "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.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763141 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480382, 37.765194 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 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.480274, 37.763684 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477614, 37.765533 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.765550 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 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.763438 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483557, 37.761343 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.761580 ] } } +, +{ "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.481240, 37.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754048 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "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.761496 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480114, 37.761462 ] } } +, +{ "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.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477120, 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.476830, 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.760155 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759952 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476541, 37.757865 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756016 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755906 ] } } +, +{ "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.480886, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756228 ] } } +, +{ "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.754124 ] } } +, +{ "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.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752844 ] } } +, +{ "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.504457, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503577, 37.753132 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.495134, 37.753302 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "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.773055 ] } } +, +{ "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.765465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792227 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482270, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 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.807470 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485145, 37.787539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 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.508727, 37.832963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502419, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494029, 37.833887 ] } } +, +{ "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.494018, 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.483836, 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.483557, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.832844 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484030, 37.829523 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "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.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474438, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717445 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718056 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472979, 37.717326 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474588, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716019 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715221 ] } } +, +{ "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.473097, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717377 ] } } +, +{ "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.716206 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470254, 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.474481, 37.713591 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713006 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710714 ] } } +, +{ "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.470039, 37.714415 ] } } +, +{ "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.469642, 37.714321 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714287 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466992, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469267, 37.712488 ] } } +, +{ "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.469460, 37.710366 ] } } +, +{ "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.467228, 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.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466906, 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.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.705766 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707056 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714355 ] } } +, +{ "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.462593, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713184 ] } } +, +{ "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.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713159 ] } } +, +{ "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.459139, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460276, 37.710137 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "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.716435 ] } } +, +{ "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.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715866 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714848 ] } } +, +{ "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.711495 ] } } +, +{ "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.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713286 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713167 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711707 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "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.710298 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705986 ] } } +, +{ "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.460684, 37.706156 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459203, 37.706615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 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.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448646, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 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.450341, 37.716265 ] } } +, +{ "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.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448345, 37.710485 ] } } +, +{ "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.442659, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 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.445695, 37.711724 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.452208, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450877, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "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.441179, 37.716511 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441157, 37.716460 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440792, 37.716647 ] } } +, +{ "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.440406, 37.717156 ] } } +, +{ "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.716418 ] } } +, +{ "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.439623, 37.715679 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439312, 37.715722 ] } } +, +{ "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.437595, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712463 ] } } +, +{ "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.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710213 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714457 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713490 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436630, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.714033 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709976 ] } } +, +{ "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.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713337 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 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 & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 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.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434591, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708974 ] } } +, +{ "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.432510, 37.709636 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "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.710570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.475908, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730428 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 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.473097, 37.752402 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471970, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474095, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748840 ] } } +, +{ "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.472990, 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.746753 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "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.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470747, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749043 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.749332 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748840 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748992 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467057, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 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.471412, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471305, 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.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.471198, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470189, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 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.736393 ] } } +, +{ "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.741442 ] } } +, +{ "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.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741102 ] } } +, +{ "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.466016, 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.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465941, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465855, 37.740899 ] } } +, +{ "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.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465726, 37.740882 ] } } +, +{ "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.465533, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465919, 37.740771 ] } } +, +{ "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.465780, 37.740797 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465748, 37.740848 ] } } +, +{ "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.469052, 37.738099 ] } } +, +{ "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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737861 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739847 ] } } +, +{ "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.466778, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465276, 37.739558 ] } } +, +{ "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.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454396, 37.751351 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 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.458785, 37.748280 ] } } +, +{ "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.458946, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458731, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458817, 37.747906 ] } } +, +{ "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.747262 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.457100, 37.745378 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457186, 37.745293 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747805 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "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.455555, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453839, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745701 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740407 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463688, 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.740237 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "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.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.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744157 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456414, 37.744004 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741628 ] } } +, +{ "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.455781, 37.743478 ] } } +, +{ "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.742876 ] } } +, +{ "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.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 37.736741 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474502, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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.735044 ] } } +, +{ "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.471627, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 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.734315 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735486 ] } } +, +{ "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.471262, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471455, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471713, 37.731633 ] } } +, +{ "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.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474545, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474374, 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.731243 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471820, 37.731277 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471691, 37.730955 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469803, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469589, 37.734866 ] } } +, +{ "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.468076, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466370, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.734866 ] } } +, +{ "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.465512, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469481, 37.729953 ] } } +, +{ "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.469106, 37.729996 ] } } +, +{ "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.467571, 37.728290 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475296, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721179 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.474588, 37.719532 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472721, 37.721493 ] } } +, +{ "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.471745, 37.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471541, 37.719719 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727221 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727204 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469739, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719753 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719770 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719617 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463967, 37.732041 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460812, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735316 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 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.461864, 37.729979 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 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.458967, 37.733610 ] } } +, +{ "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.458516, 37.732618 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732244 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457658, 37.732092 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.730700 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "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.726016 ] } } +, +{ "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.724964 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719795 ] } } +, +{ "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.461338, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461113, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460126, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458087, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.723640 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454225, 37.723453 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454203, 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.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458066, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457036, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.721764 ] } } +, +{ "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.456242, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720075 ] } } +, +{ "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.452036, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450341, 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.452390, 37.745336 ] } } +, +{ "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.451907, 37.745327 ] } } +, +{ "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.451317, 37.745005 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745938 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446092, 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.446586, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750417 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751690 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749128 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 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.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749959 ] } } +, +{ "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.447927, 37.746464 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747932 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444912, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746837 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747050 ] } } +, +{ "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.443968, 37.748975 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746702 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443217, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443045, 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.451189, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450684, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450663, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 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.449225, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740831 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449182, 37.740712 ] } } +, +{ "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.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451500, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740203 ] } } +, +{ "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.740186 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450362, 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.741391 ] } } +, +{ "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.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447745, 37.739898 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736843 ] } } +, +{ "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.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442466, 37.752301 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442616, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749077 ] } } +, +{ "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.440513, 37.750977 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440921, 37.749315 ] } } +, +{ "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.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438368, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.440299, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 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.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751232 ] } } +, +{ "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.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "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.434055, 37.751893 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751367 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433840, 37.749603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748856 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 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.435846, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.747075 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.746294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746261 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743597 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743631 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743257 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.743088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435750, 37.741594 ] } } +, +{ "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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436908, 37.738608 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738676 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436308, 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.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738896 ] } } +, +{ "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.738269 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737318 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 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.434226, 37.740195 ] } } +, +{ "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.434076, 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.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734196 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.732991 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.731701 ] } } +, +{ "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.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452294, 37.727628 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285, 37.728426 ] } } +, +{ "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.449172, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.729801 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446328, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.733992 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733958 ] } } +, +{ "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.445588, 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.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.731650 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731515 ] } } +, +{ "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.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453216, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.723546 ] } } +, +{ "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.452658, 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.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451457, 37.723046 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723029 ] } } +, +{ "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.451779, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451650, 37.719787 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720636 ] } } +, +{ "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.450287, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.722129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449354, 37.721637 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720398 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.723012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 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.444419, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447230, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.720992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720907 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 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.446232, 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.446768, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446779, 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.446897, 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.447144, 37.719863 ] } } +, +{ "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.447616, 37.719397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720636 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 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.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444977, 37.722859 ] } } +, +{ "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.444794, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444741, 37.722825 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 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.445266, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735010 ] } } +, +{ "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.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731515 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440020, 37.729003 ] } } +, +{ "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.728816 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727747 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.731396 ] } } +, +{ "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.733933 ] } } +, +{ "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.433840, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "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.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.733398 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.733602 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433861, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732533 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731328 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729801 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729597 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442402, 37.725906 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 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.442380, 37.725676 ] } } +, +{ "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.441329, 37.723368 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441243, 37.723266 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723674 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 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.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435900, 37.723826 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "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.435771, 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.434763, 37.724590 ] } } +, +{ "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.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723945 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435685, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433518, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433583, 37.726169 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723962 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434570, 37.722384 ] } } +, +{ "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.721620 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432681, 37.721646 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "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.431308, 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.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.718056 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448646, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 37.718285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "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.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473258, 37.784520 ] } } +, +{ "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.472721, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.784503 ] } } +, +{ "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.470855, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471112, 37.784461 ] } } +, +{ "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.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 37.782494 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780713 ] } } +, +{ "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.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.780577 ] } } +, +{ "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.470608, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784673 ] } } +, +{ "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.467046, 37.784749 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466713, 37.784469 ] } } +, +{ "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.464718, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469009, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782901 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465426, 37.783138 ] } } +, +{ "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.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.776795 ] } } +, +{ "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.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471949, 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.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471992, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468172, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.777202 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775269 ] } } +, +{ "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.468398, 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.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 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.465748, 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.784681 ] } } +, +{ "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.785360 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785707 ] } } +, +{ "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.783223 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 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.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 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.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459825, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781052 ] } } +, +{ "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.456843, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785665 ] } } +, +{ "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.458860, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783867 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783257 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.783079 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 37.781154 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781086 ] } } +, +{ "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.455684, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464246, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464052, 37.779008 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463924, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775455 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461756, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464117, 37.773674 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773742 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463838, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773946 ] } } +, +{ "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.458870, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "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.455373, 37.777643 ] } } +, +{ "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.458516, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774285 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454847, 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.454525, 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.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 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.765465 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765719 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765821 ] } } +, +{ "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.470340, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770537 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770443 ] } } +, +{ "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.468719, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.766008 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766025 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466348, 37.765855 ] } } +, +{ "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.466520, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764294 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464610, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763803 ] } } +, +{ "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.764108 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763947 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763921 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762233 ] } } +, +{ "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.466316, 37.762106 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761920 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.759307 ] } } +, +{ "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.473676, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 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.472700, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.759138 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473687, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756304 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 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.754116 ] } } +, +{ "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.469524, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470082, 37.758306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.758204 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468129, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467936, 37.758408 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.760410 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465962, 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.466059, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.758527 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 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.754812 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465554, 37.754642 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464288, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 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.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762403 ] } } +, +{ "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.461070, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460147, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460748, 37.762734 ] } } +, +{ "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.762530 ] } } +, +{ "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.765991 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764447 ] } } +, +{ "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.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.456521, 37.764939 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458752, 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.763726 ] } } +, +{ "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.454708, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454311, 37.764244 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.758612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463881, 37.758476 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758696 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461907, 37.757729 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463580, 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.463806, 37.754659 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463559, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756915 ] } } +, +{ "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.461091, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.456360, 37.755346 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786716 ] } } +, +{ "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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.784376 ] } } +, +{ "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.784995 ] } } +, +{ "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.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449998, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.782036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787361 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787191 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.785241 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 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.787742 ] } } +, +{ "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.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447294, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 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.445803, 37.782714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 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.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777762 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778101 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451371, 37.778016 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778356 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 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.449300, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453130, 37.774913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.774997 ] } } +, +{ "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.452766, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452508, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773064 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "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.449172, 37.773607 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449472, 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.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447144, 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.446918, 37.777541 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445449, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777575 ] } } +, +{ "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.446586, 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.446285, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445256, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.778966 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443603, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.776948 ] } } +, +{ "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.443432, 37.777101 ] } } +, +{ "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.447573, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447315, 37.773742 ] } } +, +{ "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.774065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446522, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445685, 37.773954 ] } } +, +{ "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.445738, 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.774200 ] } } +, +{ "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.440728, 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.787005 ] } } +, +{ "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.439945, 37.785156 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785343 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439741, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439440, 37.785266 ] } } +, +{ "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.438089, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 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.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439376, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439419, 37.783375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 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.439237, 37.781612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439076, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783630 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438818, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.780730 ] } } +, +{ "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.785801 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "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.786165 ] } } +, +{ "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.433057, 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.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781086 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780933 ] } } +, +{ "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.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "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.779170 ] } } +, +{ "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.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440170, 37.777525 ] } } +, +{ "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.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438518, 37.777737 ] } } +, +{ "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.438228, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438067, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441264, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.770757 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "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.774726 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437874, 37.774896 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437359, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437381, 37.771300 ] } } +, +{ "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.436469, 37.775218 ] } } +, +{ "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.434452, 37.775472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "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.434183, 37.775421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771334 ] } } +, +{ "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.433861, 37.771605 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.771783 ] } } +, +{ "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.452852, 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.453474, 37.768332 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453345, 37.768247 ] } } +, +{ "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.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450792, 37.769604 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769451 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450620, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769722 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448474, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768535 ] } } +, +{ "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.452937, 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.765338 ] } } +, +{ "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.452658, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451113, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.764608 ] } } +, +{ "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.765948 ] } } +, +{ "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.450137, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765567 ] } } +, +{ "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.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449719, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769943 ] } } +, +{ "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.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445427, 37.770316 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770096 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 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.446479, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446285, 37.767161 ] } } +, +{ "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.770214 ] } } +, +{ "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.443560, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442960, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444826, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447788, 37.766296 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766160 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447766, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445878, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.763022 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442809, 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.443711, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442917, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448989, 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.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.760927 ] } } +, +{ "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.446640, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760868 ] } } +, +{ "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.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 37.758798 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 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.445223, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.761207 ] } } +, +{ "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.445084, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 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.443550, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443496, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759799 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "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.443432, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443281, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755354 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755490 ] } } +, +{ "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.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767738 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768671 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766500 ] } } +, +{ "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.438282, 37.766703 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.766856 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441028, 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.437499, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 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.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769400 ] } } +, +{ "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.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.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.765838 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449, 37.764278 ] } } +, +{ "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": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435299, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435235, 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.435396, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762556 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 37.762378 ] } } +, +{ "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.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763964 ] } } +, +{ "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.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760495 ] } } +, +{ "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.438196, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438046, 37.759036 ] } } +, +{ "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.441157, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437853, 37.757568 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.757416 ] } } +, +{ "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.755821 ] } } +, +{ "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.435160, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.760842 ] } } +, +{ "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.434849, 37.760851 ] } } +, +{ "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.435975, 37.757679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.756101 ] } } +, +{ "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.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.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "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.752776 ] } } +, +{ "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.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "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.807470 ] } } +, +{ "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472121, 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.466810, 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.801027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467314, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802909 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459139, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460362, 37.798535 ] } } +, +{ "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.458001, 37.803808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456821, 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.456789, 37.801638 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456735, 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.456285, 37.803859 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "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.802307 ] } } +, +{ "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.456328, 37.801587 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.801434 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.797959 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797738 ] } } +, +{ "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.454740, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 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.453946, 37.800536 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456306, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798264 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455105, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454997, 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.799111 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.799078 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799128 ] } } +, +{ "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.450137, 37.798060 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804350 ] } } +, +{ "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.804562 ] } } +, +{ "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.443432, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802485 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444805, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802858 ] } } +, +{ "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.443324, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800332 ] } } +, +{ "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.447144, 37.798425 ] } } +, +{ "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.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800977 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.800044 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798671 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "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.795754 ] } } +, +{ "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.445320, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.790913 ] } } +, +{ "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.790718 ] } } +, +{ "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.447047, 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.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791193 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441286, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800451 ] } } +, +{ "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.439430, 37.799298 ] } } +, +{ "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.437466, 37.800722 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796882 ] } } +, +{ "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.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804452 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.803554 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802825 ] } } +, +{ "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.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804876 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433347, 37.803435 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 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.433068, 37.801163 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801316 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436479, 37.800892 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +, +{ "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.436136, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "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.800951 ] } } +, +{ "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.797399 ] } } +, +{ "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.435589, 37.796975 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432595, 37.797518 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.796178 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438689, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 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.440900, 37.789972 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439247, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "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.795865 ] } } +, +{ "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.436286, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434849, 37.794160 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "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.433400, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 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.436329, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436115, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434613, 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.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 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.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789582 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788938 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433926, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432510, 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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "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.440728, 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.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801519 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.427188, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718938 ] } } +, +{ "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.427070, 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.718904 ] } } +, +{ "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.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 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.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717563 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428358, 37.717487 ] } } +, +{ "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.710570 ] } } +, +{ "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.428197, 37.711877 ] } } +, +{ "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.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422789, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 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.422124, 37.713710 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421159, 37.713226 ] } } +, +{ "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.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423111, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708991 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712980 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419549, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.712607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712420 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418691, 37.711860 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418884, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 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.415494, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712030 ] } } +, +{ "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.414474, 37.718124 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.715034 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 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.412640, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412790, 37.711062 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.710986 ] } } +, +{ "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.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710595 ] } } +, +{ "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.710366 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709874 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420365, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 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.418240, 37.707905 ] } } +, +{ "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.707141 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 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.412940, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.706530 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708261 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407190, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717292 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716664 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405730, 37.716604 ] } } +, +{ "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.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717054 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715348 ] } } +, +{ "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.409056, 37.713846 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 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.408971, 37.711707 ] } } +, +{ "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.409528, 37.710010 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408541, 37.709908 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 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.404969, 37.713218 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "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.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716290 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716104 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 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.399937, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.716358 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716273 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714678 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714814 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.713846 ] } } +, +{ "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.401997, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "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.402383, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402426, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402319, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712250 ] } } +, +{ "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.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 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.400688, 37.712021 ] } } +, +{ "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.398961, 37.711622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 37.709865 ] } } +, +{ "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.406696, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708974 ] } } +, +{ "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.405055, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 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.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711198 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397233, 37.711215 ] } } +, +{ "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.710977 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394766, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.711249 ] } } +, +{ "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.389219, 37.717020 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "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.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392899, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "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.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 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.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429774, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427553, 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.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427360, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427124, 37.749187 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427081, 37.746990 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746787 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425321, 37.751910 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751792 ] } } +, +{ "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.422993, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743605 ] } } +, +{ "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.426662, 37.742816 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426630, 37.742646 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742103 ] } } +, +{ "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.426469, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 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.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737115 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.742171 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421137, 37.743817 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422178, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742443 ] } } +, +{ "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.425504, 37.739626 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424291, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424163, 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.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738998 ] } } +, +{ "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.424206, 37.737064 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 37.737454 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424334, 37.736215 ] } } +, +{ "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.420912, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 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.752326 ] } } +, +{ "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.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420450, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.750282 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418498, 37.750672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 37.752318 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416180, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416159, 37.752453 ] } } +, +{ "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.749009 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416073, 37.749111 ] } } +, +{ "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.748000 ] } } +, +{ "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.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.748577 ] } } +, +{ "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.418090, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 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.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.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414249, 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.414035, 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.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414056, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413884, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413863, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413713, 37.749230 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413799, 37.748483 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748347 ] } } +, +{ "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.748381 ] } } +, +{ "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.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.746871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413498, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.745327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411910, 37.748407 ] } } +, +{ "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.748347 ] } } +, +{ "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.409765, 37.748237 ] } } +, +{ "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.419978, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419699, 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.418466, 37.739304 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 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.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410473, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410516, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741459 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.741238 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409786, 37.741832 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "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.413670, 37.739007 ] } } +, +{ "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.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737166 ] } } +, +{ "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.413530, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739575 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411417, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739796 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735638 ] } } +, +{ "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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429334, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732176 ] } } +, +{ "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.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429656, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429720, 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.431308, 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.728782 ] } } +, +{ "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.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728613 ] } } +, +{ "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.424710, 37.735621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.735918 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422575, 37.735248 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735078 ] } } +, +{ "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.426094, 37.728562 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730955 ] } } +, +{ "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.422575, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430600, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723996 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.723114 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429473, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 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.427628, 37.721365 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427768, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426480, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.720907 ] } } +, +{ "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.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426180, 37.720415 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718938 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724658 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424377, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424227, 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.423251, 37.725201 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 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.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426051, 37.720406 ] } } +, +{ "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.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735061 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.732295 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417017, 37.735647 ] } } +, +{ "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.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417768, 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.415268, 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.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416116, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734739 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734875 ] } } +, +{ "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.413648, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 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.413595, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413927, 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.734917 ] } } +, +{ "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.729851 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.729936 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414571, 37.727408 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414399, 37.727391 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730921 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730972 ] } } +, +{ "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.420290, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726406 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "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.718904 ] } } +, +{ "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.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.724998 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.722944 ] } } +, +{ "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.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.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722842 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752521 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.751308 ] } } +, +{ "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.408895, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408735, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 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.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 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.402233, 37.751893 ] } } +, +{ "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.750842 ] } } +, +{ "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.750723 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400151, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 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.409410, 37.742867 ] } } +, +{ "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.405237, 37.743325 ] } } +, +{ "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.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 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.739677 ] } } +, +{ "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.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.406771, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 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.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403349, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "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.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398821, 37.743902 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400452, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403735, 37.738795 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739134 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739558 ] } } +, +{ "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.398896, 37.736368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.752385 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 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.752250 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.751435 ] } } +, +{ "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.749035 ] } } +, +{ "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.749874 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396225, 37.750010 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752504 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396268, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393929, 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.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392770, 37.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 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.738218 ] } } +, +{ "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.396729, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.737166 ] } } +, +{ "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.394680, 37.736224 ] } } +, +{ "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.736640 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390538, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390474, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740907 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742714 ] } } +, +{ "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.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.388157, 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.739762 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738082 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390517, 37.737522 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391654, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391526, 37.736309 ] } } +, +{ "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.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.389809, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389637, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737929 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732176 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733279 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404722, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733059 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728002 ] } } +, +{ "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.404518, 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.402576, 37.734170 ] } } +, +{ "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.401074, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400666, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399465, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731905 ] } } +, +{ "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.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403649, 37.727526 ] } } +, +{ "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.727747 ] } } +, +{ "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.401450, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.728086 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.730378 ] } } +, +{ "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.401021, 37.729122 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729105 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408456, 37.726287 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.407469, 37.726678 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408649, 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.407640, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720771 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726372 ] } } +, +{ "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.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.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.723563 ] } } +, +{ "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.723402 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.720933 ] } } +, +{ "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.721612 ] } } +, +{ "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.401160, 37.721450 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721484 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400430, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395560, 37.731803 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395281, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395409, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395259, 37.729733 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727925 ] } } +, +{ "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.735036 ] } } +, +{ "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.392663, 37.735036 ] } } +, +{ "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.735689 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392083, 37.735672 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735078 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390839, 37.734366 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390732, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 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.734026 ] } } +, +{ "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.390860, 37.733856 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391568, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732287 ] } } +, +{ "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.391504, 37.732270 ] } } +, +{ "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.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735418 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 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.390184, 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.389036, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732923 ] } } +, +{ "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.730445 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392856, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 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.392598, 37.729240 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729207 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393028, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728086 ] } } +, +{ "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.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725676 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725490 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394208, 37.725303 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724166 ] } } +, +{ "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.395248, 37.723131 ] } } +, +{ "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.398435, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.722486 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720788 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 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.396718, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.722418 ] } } +, +{ "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.395420, 37.722638 ] } } +, +{ "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.722384 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.722341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394851, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.722036 ] } } +, +{ "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.727077 ] } } +, +{ "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.391461, 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.389594, 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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "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.748950 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "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.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "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.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "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.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 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.429870, 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.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428712, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786937 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 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.785037 ] } } +, +{ "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.428948, 37.781926 ] } } +, +{ "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.782137 ] } } +, +{ "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.424989, 37.786131 ] } } +, +{ "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.785054 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786581 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422897, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785784 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "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.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784664 ] } } +, +{ "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.421137, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421180, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 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.425536, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.779695 ] } } +, +{ "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.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783206 ] } } +, +{ "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.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778864 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426716, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426330, 37.777389 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428282, 37.776269 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.772148 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430493, 37.772012 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 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.779390 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424957, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423025, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421674, 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.425472, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773819 ] } } +, +{ "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.770961 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422532, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420965, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 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.771775 ] } } +, +{ "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.420204, 37.787802 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419978, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.786920 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 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.420644, 37.785851 ] } } +, +{ "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.419163, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787055 ] } } +, +{ "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.416266, 37.787242 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.785088 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.782867 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783189 ] } } +, +{ "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.419270, 37.782188 ] } } +, +{ "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.420150, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779695 ] } } +, +{ "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.419013, 37.780314 ] } } +, +{ "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.783359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417425, 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.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781697 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782629 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "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.780577 ] } } +, +{ "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.415880, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.780789 ] } } +, +{ "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.414979, 37.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785546 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.784715 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784885 ] } } +, +{ "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.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786988 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787174 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.409775, 37.786106 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785851 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410794, 37.784105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.781078 ] } } +, +{ "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.412447, 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.412618, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.783392 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410237, 37.782324 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781171 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419828, 37.778695 ] } } +, +{ "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.419753, 37.778194 ] } } +, +{ "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.778389 ] } } +, +{ "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.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.775218 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419184, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.775150 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "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.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416760, 37.778746 ] } } +, +{ "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.416245, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416223, 37.777592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775947 ] } } +, +{ "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.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774930 ] } } +, +{ "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.418605, 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.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.774311 ] } } +, +{ "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.416899, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773335 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415386, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } +, +{ "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.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414764, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777236 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776456 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778975 ] } } +, +{ "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.410516, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776227 ] } } +, +{ "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.414228, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771741 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.771597 ] } } +, +{ "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.412640, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429935, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 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.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769417 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429141, 37.769468 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429098, 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.429001, 37.767789 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } +, +{ "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": "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.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.769790 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769434 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 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.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.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "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.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.764464 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428561, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428529, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.764736 ] } } +, +{ "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.424978, 37.770571 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769807 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.770155 ] } } +, +{ "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.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766788 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 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.764854 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765236 ] } } +, +{ "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.430471, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 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.758272 ] } } +, +{ "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.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757458 ] } } +, +{ "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.426931, 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.427757, 37.754608 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761394 ] } } +, +{ "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.761529 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.761767 ] } } +, +{ "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.761428 ] } } +, +{ "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.759867 ] } } +, +{ "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.758747 ] } } +, +{ "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.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755558 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419935, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767806 ] } } +, +{ "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.766686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767144 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768467 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.768467 ] } } +, +{ "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.419678, 37.765126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.765007 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419506, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 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.419356, 37.762641 ] } } +, +{ "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.417650, 37.765261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765380 ] } } +, +{ "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.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.762123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763836 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770367 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 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.410816, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410687, 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.412983, 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.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 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.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "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.419099, 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.417006, 37.758934 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 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.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754286 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 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.414786, 37.759002 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.758815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758764 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "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.410086, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409915, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409936, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.408134, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.786326 ] } } +, +{ "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.409518, 37.785071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784274 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783918 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.784071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408584, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408413, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407962, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407790, 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.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784308 ] } } +, +{ "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.784088 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408220, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407705, 37.784206 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407318, 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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786648 ] } } +, +{ "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.404593, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406245, 37.785767 ] } } +, +{ "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.405902, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 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.404529, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.781196 ] } } +, +{ "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.782731 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 37.782595 ] } } +, +{ "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.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "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.403445, 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.787717 ] } } +, +{ "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.401578, 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.402083, 37.786352 ] } } +, +{ "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.403939, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399036, 37.786216 ] } } +, +{ "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.400838, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.784953 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.784003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398778, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402555, 37.783036 ] } } +, +{ "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.403467, 37.780442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780391 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780679 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409228, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.776643 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404250, 37.777321 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 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.407136, 37.772538 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772335 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408177, 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.405012, 37.774590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774387 ] } } +, +{ "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.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402147, 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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 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.399958, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776456 ] } } +, +{ "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.401954, 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.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399443, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "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.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785631 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 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.785521 ] } } +, +{ "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.396568, 37.785326 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784198 ] } } +, +{ "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.395023, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397684, 37.782443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782646 ] } } +, +{ "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.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393478, 37.782850 ] } } +, +{ "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.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "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.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387964, 37.784605 ] } } +, +{ "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.391955, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390689, 37.780628 ] } } +, +{ "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.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "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.389830, 37.779628 ] } } +, +{ "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.396654, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396611, 37.778313 ] } } +, +{ "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.396139, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397169, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775438 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397212, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394637, 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.395141, 37.777117 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777033 ] } } +, +{ "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.394755, 37.777016 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776371 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393907, 37.776329 ] } } +, +{ "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.393950, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.776286 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776066 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772894 ] } } +, +{ "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.778729 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 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.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776193 ] } } +, +{ "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.389723, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772623 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389723, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771164 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768264 ] } } +, +{ "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.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764235 ] } } +, +{ "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.404701, 37.766042 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404443, 37.764566 ] } } +, +{ "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.404336, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770163 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403156, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403048, 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.402920, 37.767467 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403628, 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.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.766016 ] } } +, +{ "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.402683, 37.764871 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401718, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401460, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401525, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763565 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402533, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766228 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399293, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401375, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407297, 37.761648 ] } } +, +{ "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.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759087 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404186, 37.762021 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404207, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406846, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757407 ] } } +, +{ "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.409496, 37.755728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "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.406911, 37.757492 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406610, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406760, 37.755880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754303 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754421 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 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.402920, 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.402169, 37.759443 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.759596 ] } } +, +{ "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.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 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.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754455 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402469, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401696, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.754336 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757441 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757305 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398864, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755914 ] } } +, +{ "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.400581, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397019, 37.766500 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.766406 ] } } +, +{ "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.397791, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397577, 37.762615 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397362, 37.762581 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395431, 37.762708 ] } } +, +{ "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.393478, 37.762836 ] } } +, +{ "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.391043, 37.770520 ] } } +, +{ "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.766771 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389294, 37.769722 ] } } +, +{ "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.389305, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389315, 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.389358, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767195 ] } } +, +{ "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.389187, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.764244 ] } } +, +{ "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.389669, 37.762904 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388951, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762997 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762980 ] } } +, +{ "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.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.761156 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398371, 37.759875 ] } } +, +{ "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.760138 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760088 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.759994 ] } } +, +{ "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.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.760045 ] } } +, +{ "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.398049, 37.757458 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397898, 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.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754710 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396568, 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.395710, 37.756830 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757645 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 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.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760596 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760579 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390088, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390002, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758043 ] } } +, +{ "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.758018 ] } } +, +{ "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.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.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755422 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "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.414035, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 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.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 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.386934, 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": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 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.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.422092, 37.806351 ] } } +, +{ "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.420686, 37.806724 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.806690 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805707 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420472, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.805808 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420279, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808326 ] } } +, +{ "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.417414, 37.806173 ] } } +, +{ "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.417597, 37.805495 ] } } +, +{ "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.808038 ] } } +, +{ "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.414249, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410816, 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.412254, 37.807606 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412039, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806504 ] } } +, +{ "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.410601, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410387, 37.807046 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801519 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "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.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426223, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427381, 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.425418, 37.805113 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425407, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425257, 37.805164 ] } } +, +{ "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.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.805249 ] } } +, +{ "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.803384 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424914, 37.802435 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424849, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802587 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423390, 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.800485 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424248, 37.798586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798450 ] } } +, +{ "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.422296, 37.799010 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798806 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798688 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797738 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 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.429506, 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.792550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 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.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 37.790532 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427510, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427145, 37.790684 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796416 ] } } +, +{ "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.423337, 37.796085 ] } } +, +{ "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.423133, 37.794907 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794923 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.794788 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 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.421545, 37.795280 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421480, 37.795118 ] } } +, +{ "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.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 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.794050 ] } } +, +{ "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.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.793703 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794194 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.793499 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793194 ] } } +, +{ "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.791049 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 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.422296, 37.791380 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422339, 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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790650 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.790498 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789514 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420107, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 37.801918 ] } } +, +{ "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.415247, 37.805334 ] } } +, +{ "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.801019 ] } } +, +{ "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.800214 ] } } +, +{ "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.420536, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800180 ] } } +, +{ "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.799188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799128 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798349 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798315 ] } } +, +{ "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.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417554, 37.799451 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799332 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.799696 ] } } +, +{ "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.414957, 37.804384 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.803418 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803291 ] } } +, +{ "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.802604 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.802689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412661, 37.802096 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411889, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802774 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "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.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409700, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414035, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800909 ] } } +, +{ "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.412575, 37.799959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412554, 37.799976 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.800044 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412361, 37.799027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412211, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410365, 37.800502 ] } } +, +{ "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.410644, 37.800205 ] } } +, +{ "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.800417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412018, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797212 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420043, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419871, 37.795330 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.796500 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796348 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795381 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418369, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795551 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794415 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419807, 37.793414 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.794550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418047, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 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.417908, 37.792762 ] } } +, +{ "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.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "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.420547, 37.790667 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790871 ] } } +, +{ "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.789675 ] } } +, +{ "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.420536, 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.417639, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791023 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.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.415676, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 37.789158 ] } } +, +{ "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.415301, 37.789226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414850, 37.795042 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795263 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414700, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794262 ] } } +, +{ "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.411824, 37.796212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796127 ] } } +, +{ "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.411524, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411674, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411717, 37.795458 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410001, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.794635 ] } } +, +{ "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.411535, 37.794449 ] } } +, +{ "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.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "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.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414099, 37.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412618, 37.791549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789446 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "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.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410988, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410966, 37.791753 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410322, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "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.407908, 37.807351 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406288, 37.806953 ] } } +, +{ "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.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803503 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408048, 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.409507, 37.802214 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803706 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803011 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802994 ] } } +, +{ "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.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405688, 37.801773 ] } } +, +{ "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.409056, 37.799281 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799391 ] } } +, +{ "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.800688 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797196 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797857 ] } } +, +{ "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.800917 ] } } +, +{ "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.404475, 37.801095 ] } } +, +{ "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.406900, 37.798128 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406353, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796992 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797060 ] } } +, +{ "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.403778, 37.805198 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.805147 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805029 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803935 ] } } +, +{ "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.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 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.399379, 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.797399 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797552 ] } } +, +{ "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.398928, 37.800612 ] } } +, +{ "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.796865 ] } } +, +{ "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.408327, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "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.409636, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793050 ] } } +, +{ "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.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.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407597, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796127 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404314, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796076 ] } } +, +{ "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.405977, 37.794271 ] } } +, +{ "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.405967, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404422, 37.794483 ] } } +, +{ "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.404282, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792600 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792075 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791956 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.791948 ] } } +, +{ "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.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791100 ] } } +, +{ "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.408649, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406932, 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.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.792380 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "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.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795737 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794686 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793787 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792770 ] } } +, +{ "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.401557, 37.794033 ] } } +, +{ "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.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.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.793313 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400109, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398928, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791007 ] } } +, +{ "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.402126, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "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": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792295 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791074 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790345 ] } } +, +{ "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.399776, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "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.401235, 37.789260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789073 ] } } +, +{ "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.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798976 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397877, 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.798908 ] } } +, +{ "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.396160, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 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.397619, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397705, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398521, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397727, 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.396804, 37.793533 ] } } +, +{ "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.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.792990 ] } } +, +{ "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.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793194 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.793160 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396396, 37.793143 ] } } +, +{ "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.793499 ] } } +, +{ "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.795008 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.795110 ] } } +, +{ "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.393779, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793737 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 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.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394916, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794466 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794432 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394272, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393457, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.793770 ] } } +, +{ "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.393457, 37.793906 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393414, 37.793465 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393500, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393264, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793211 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791651 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791515 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.791973 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394358, 37.792397 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "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.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.395935, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.789192 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789938 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394294, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.789820 ] } } +, +{ "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.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792694 ] } } +, +{ "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.392416, 37.791346 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392566, 37.791176 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792346 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391075, 37.792160 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391869, 37.789277 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393092, 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.390206, 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.389905, 37.790566 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.790489 ] } } +, +{ "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.388543, 37.789684 ] } } +, +{ "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.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "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.420204, 37.787802 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "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.403445, 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.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742714 ] } } +, +{ "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.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.388157, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "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.748950 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386655, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 37.741408 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386419, 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.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742545 ] } } +, +{ "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.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383178, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741136 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384444, 37.741068 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384573, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384509, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386547, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386290, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385882, 37.736606 ] } } +, +{ "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.382642, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382556, 37.739813 ] } } +, +{ "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.384166, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381011, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738778 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737081 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379509, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737675 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "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.386644, 37.732584 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386612, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385989, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386054, 37.733008 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "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.383060, 37.734696 ] } } +, +{ "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.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383329, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383093, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386569, 37.729563 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385153, 37.730802 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383586, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730157 ] } } +, +{ "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.728375 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729427 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379531, 37.734026 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382127, 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.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379917, 37.732499 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379702, 37.732397 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "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.379348, 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.377235, 37.732923 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380346, 37.730581 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381376, 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.380196, 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.377020, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726118 ] } } +, +{ "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.731998 ] } } +, +{ "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.730938 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374488, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373136, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368716, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725337 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365197, 37.728596 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365454, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387964, 37.784605 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758043 ] } } +, +{ "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.758018 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755422 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "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.386934, 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.386794, 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.383060, 37.755643 ] } } +, +{ "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": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } +, +{ "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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371806, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371441, 37.816226 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366334, 37.820006 ] } } +, +{ "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.371141, 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.371023, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370862, 37.813149 ] } } +, +{ "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.811810 ] } } +, +{ "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.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363373, 37.810513 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363394, 37.810386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375261, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829828 ] } } +, +{ "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.828319 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376312, 37.825472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375647, 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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "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.371463, 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.825201 ] } } +, +{ "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.823633 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +] } +] } +] } diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json new file mode 100644 index 0000000..3e88642 --- /dev/null +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -0,0 +1,21676 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.409668,37.770713,13", +"description": "tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "13", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530303, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 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.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "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.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "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.456274, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "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.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "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.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 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.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "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.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "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.405119, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "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.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "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": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713023 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 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 West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468677, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "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.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.710409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707387 ] } } +, +{ "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.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714279 ] } } +, +{ "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.432327, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712853 ] } } +, +{ "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.434859, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710069 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708236 ] } } +, +{ "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.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712480 ] } } +, +{ "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.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.711495 ] } } +, +{ "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.404990, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "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.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397265, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829548 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482495, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480521, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792117 ] } } +, +{ "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.474899, 37.807478 ] } } +, +{ "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.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803443 ] } } +, +{ "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.443442, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.791303 ] } } +, +{ "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.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800392 ] } } +, +{ "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.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438722, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "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.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 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.433958, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509618, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508502, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "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": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "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.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775498 ] } } +, +{ "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.506313, 37.771495 ] } } +, +{ "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.503309, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771902 ] } } +, +{ "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.510304, 37.767899 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509103, 37.760367 ] } } +, +{ "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.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506185, 37.762403 ] } } +, +{ "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.508073, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +, +{ "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.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505927, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756635 ] } } +, +{ "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.760503 ] } } +, +{ "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.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492366, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "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.496357, 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.492023, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.772411 ] } } +, +{ "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.772377 ] } } +, +{ "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.485070, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780111 ] } } +, +{ "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.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776210 ] } } +, +{ "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.484255, 37.774344 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772716 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "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.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "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.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761046 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489533, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "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.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765185 ] } } +, +{ "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.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 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.481122, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "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.480006, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "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.476573, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479749, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "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.476315, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.753140 ] } } +, +{ "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.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.745438 ] } } +, +{ "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.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736139 ] } } +, +{ "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.500219, 37.742044 ] } } +, +{ "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.505369, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501378, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 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.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494941, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497344, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "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.490993, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486701, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494512, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742383 ] } } +, +{ "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.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 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.487645, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "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.484598, 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.481594, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743198 ] } } +, +{ "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.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "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.493696, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "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.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482581, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "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.472796, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.780687 ] } } +, +{ "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.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.776821 ] } } +, +{ "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.470350, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777092 ] } } +, +{ "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.467647, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.773666 ] } } +, +{ "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.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781400 ] } } +, +{ "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.455716, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.777160 ] } } +, +{ "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.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "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.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469363, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "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.464643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.763964 ] } } +, +{ "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": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759180 ] } } +, +{ "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.473612, 37.756330 ] } } +, +{ "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": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760435 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "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.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465587, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "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.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "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.463613, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "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": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784045 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781875 ] } } +, +{ "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.447991, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "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.443399, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "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.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452798, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773395 ] } } +, +{ "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.447219, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "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.443357, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 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.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.787030 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785334 ] } } +, +{ "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.437778, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437692, 37.783638 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.786013 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780959 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441554, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "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.450824, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "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.452970, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "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.447820, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.765830 ] } } +, +{ "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.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449021, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768849 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "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.767628 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "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.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761623 ] } } +, +{ "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 ] } } +, +{ "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.437906, 37.757416 ] } } +, +{ "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.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.754226 ] } } +, +{ "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.434859, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757653 ] } } +, +{ "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.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "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.466531, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "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.471337, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736410 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468505, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "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.740856 ] } } +, +{ "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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 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 & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "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.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "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.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "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.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "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.461896, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731455 ] } } +, +{ "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.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.724293 ] } } +, +{ "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.454257, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721951 ] } } +, +{ "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.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "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.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +, +{ "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.442842, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.739261 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.738209 ] } } +, +{ "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.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "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.440953, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436576, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432027, 37.751410 ] } } +, +{ "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.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +, +{ "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.434473, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737361 ] } } +, +{ "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.432842, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "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.448807, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "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.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "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.446361, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.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.452455, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722969 ] } } +, +{ "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.451682, 37.719812 ] } } +, +{ "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.450008, 37.722155 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "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.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "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.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "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.722834 ] } } +, +{ "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.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "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": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733424 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "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.725923 ] } } +, +{ "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.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "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.438550, 37.723580 ] } } +, +{ "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.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724327 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "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.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.422113, 37.806359 ] } } +, +{ "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.420654, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.806190 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.808055 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.808123 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.797814 ] } } +, +{ "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.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "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.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798493 ] } } +, +{ "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.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790693 ] } } +, +{ "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.423358, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.794796 ] } } +, +{ "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.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 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": "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.422328, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.798323 ] } } +, +{ "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.415891, 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.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795169 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796526 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +, +{ "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.417479, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "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.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "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.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794661 ] } } +, +{ "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.411385, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "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.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808258 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "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.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } +, +{ "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.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793745 ] } } +, +{ "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.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "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.404304, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794491 ] } } +, +{ "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": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "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.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788726 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "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.401257, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "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.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799103 ] } } +, +{ "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.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793168 ] } } +, +{ "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.394476, 37.795034 ] } } +, +{ "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.395720, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.794084 ] } } +, +{ "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.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790625 ] } } +, +{ "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.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.793813 ] } } +, +{ "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.391171, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390227, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823650 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371173, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364907, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811717 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784927 ] } } +, +{ "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 & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431598, 37.775871 ] } } +, +{ "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.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.777397 ] } } +, +{ "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": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772173 ] } } +, +{ "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.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.786928 ] } } +, +{ "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.420654, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783503 ] } } +, +{ "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.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "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.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "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.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778211 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "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.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "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.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429967, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767696 ] } } +, +{ "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.429152, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 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.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.764608 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "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.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "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.421556, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768645 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "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.417092, 37.761894 ] } } +, +{ "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.418981, 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.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "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.408166, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786352 ] } } +, +{ "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.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.784011 ] } } +, +{ "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.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.783503 ] } } +, +{ "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.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny 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": "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.401643, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +, +{ "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.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774412 ] } } +, +{ "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.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 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.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "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.394776, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772920 ] } } +, +{ "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.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775498 ] } } +, +{ "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.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "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.407565, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763319 ] } } +, +{ "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": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "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.403445, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "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.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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.404218, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "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.402029, 37.759621 ] } } +, +{ "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.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.766780 ] } } +, +{ "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.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762878 ] } } +, +{ "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.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761182 ] } } +, +{ "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.396364, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "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.394004, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429795, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749408 ] } } +, +{ "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.431340, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744963 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "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.429023, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738922 ] } } +, +{ "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.424345, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "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": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "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": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.746761 ] } } +, +{ "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.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 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.412028, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430310, 37.735494 ] } } +, +{ "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.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 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.424431, 37.735935 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "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.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "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.413015, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "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.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739702 ] } } +, +{ "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.406793, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397094, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752360 ] } } +, +{ "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.393875, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.737123 ] } } +, +{ "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.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "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.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391686, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 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.737666 ] } } +, +{ "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.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.732202 ] } } +, +{ "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.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399497, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726567 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723411 ] } } +, +{ "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.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726398 ] } } +, +{ "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.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391601, 37.732304 ] } } +, +{ "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.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } +, +{ "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.392974, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386451, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384477, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "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.382588, 37.739838 ] } } +, +{ "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.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736546 ] } } +, +{ "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.387395, 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.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "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": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.726058 ] } } +, +{ "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.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374520, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "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.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "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.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530282, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523243, 37.831429 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 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 & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "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.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719728 ] } } +, +{ "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.719592 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451661, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480242, 37.714500 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709135 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716027 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "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.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717385 ] } } +, +{ "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.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713006 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.713566 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714330 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714296 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712497 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469342, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467239, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705774 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707064 ] } } +, +{ "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.462604, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462347, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459171, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460287, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716435 ] } } +, +{ "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.456124, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "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.456124, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454793, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707370 ] } } +, +{ "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.448657, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716095 ] } } +, +{ "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.453163, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448356, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.453334, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.441189, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.716418 ] } } +, +{ "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.439322, 37.715722 ] } } +, +{ "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.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "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.714466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714262 ] } } +, +{ "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.432306, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436640, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.709984 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.710578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510326, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779755 ] } } +, +{ "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.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "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.503846, 37.775362 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503545, 37.771749 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500412, 37.775650 ] } } +, +{ "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.771885 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509081, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764201 ] } } +, +{ "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.506163, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505991, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760283 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508051, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760520 ] } } +, +{ "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.505820, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505863, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502859, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499382, 37.760775 ] } } +, +{ "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.499168, 37.760690 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.779449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496421, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 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.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.779755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493417, 37.779585 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491443, 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.490628, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489984, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489297, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488053, 37.779873 ] } } +, +{ "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.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492988, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772089 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776125 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489641, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489426, 37.772411 ] } } +, +{ "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.487280, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.783825 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485049, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 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.481894, 37.783944 ] } } +, +{ "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.484984, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +, +{ "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.782231 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780230 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.778296 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776193 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482431, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484534, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772360 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480285, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772869 ] } } +, +{ "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.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764897 ] } } +, +{ "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.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760792 ] } } +, +{ "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.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761029 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495606, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495477, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489512, 37.761114 ] } } +, +{ "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.486765, 37.761182 ] } } +, +{ "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.489469, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487323, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765439 ] } } +, +{ "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.477753, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477624, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765168 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477324, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763438 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 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": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "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.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483032, 37.753887 ] } } +, +{ "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.480114, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759604 ] } } +, +{ "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.477195, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.760164 ] } } +, +{ "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.476552, 37.757874 ] } } +, +{ "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.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 37.753972 ] } } +, +{ "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.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754124 ] } } +, +{ "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.506378, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "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.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503588, 37.753140 ] } } +, +{ "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.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507021, 37.747355 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506721, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501013, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498868, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753225 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501957, 37.747575 ] } } +, +{ "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.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738090 ] } } +, +{ "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.504361, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742129 ] } } +, +{ "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.735545 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501357, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734578 ] } } +, +{ "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.501700, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "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.718743 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495434, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494876, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "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.497323, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490971, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491229, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486680, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744233 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494490, 37.743995 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494361, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.740127 ] } } +, +{ "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.494104, 37.738396 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742502 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489769, 37.742366 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487581, 37.744284 ] } } +, +{ "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.487345, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487409, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484791, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 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.481315, 37.748475 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "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.475908, 37.748543 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485478, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733916 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496850, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496593, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733373 ] } } +, +{ "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.493632, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734153 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486250, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483976, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486422, 37.729639 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.734663 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479641, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730013 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724242 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726992 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482560, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "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.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +, +{ "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.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.784605 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780687 ] } } +, +{ "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.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469170, 37.784673 ] } } +, +{ "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.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466724, 37.784469 ] } } +, +{ "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.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782807 ] } } +, +{ "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.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.783147 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 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.472239, 37.776905 ] } } +, +{ "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.470543, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472003, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468183, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777211 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "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.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467625, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464492, 37.784690 ] } } +, +{ "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.462304, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.783028 ] } } +, +{ "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.461960, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781145 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456853, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455223, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784130 ] } } +, +{ "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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "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.464256, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.779008 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773547 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773853 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455051, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774802 ] } } +, +{ "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.454150, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453892, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.770867 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765473 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "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.470350, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765914 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469342, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464621, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764116 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764116 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.763947 ] } } +, +{ "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.762149 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756313 ] } } +, +{ "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.472174, 37.754124 ] } } +, +{ "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.758315 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760418 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758552 ] } } +, +{ "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.465823, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756686 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756517 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465565, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "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.464149, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462862, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460759, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762658 ] } } +, +{ "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.457969, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.764456 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766050 ] } } +, +{ "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.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 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.454922, 37.766220 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454321, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463892, 37.758484 ] } } +, +{ "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.463591, 37.756771 ] } } +, +{ "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.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756924 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459986, 37.753768 ] } } +, +{ "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": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450287, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "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.446661, 37.785249 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.784401 ] } } +, +{ "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.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.782333 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778025 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778364 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452862, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.773615 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775684 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.773954 ] } } +, +{ "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.774090 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "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.439945, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438099, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439387, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.783384 ] } } +, +{ "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.781620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438829, 37.780501 ] } } +, +{ "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.780891 ] } } +, +{ "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.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788064 ] } } +, +{ "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.786165 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780942 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.775074 ] } } +, +{ "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.770766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774735 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778161 ] } } +, +{ "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.436254, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 37.778551 ] } } +, +{ "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.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771241 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771614 ] } } +, +{ "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.452862, 37.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769612 ] } } +, +{ "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.450631, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "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.452605, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.764608 ] } } +, +{ "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.449815, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770359 ] } } +, +{ "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.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765236 ] } } +, +{ "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 & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.763031 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 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.443721, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763743 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449000, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 37.758671 ] } } +, +{ "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.445223, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "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.445095, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "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.443442, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755499 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767746 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "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.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769409 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "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.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.765626 ] } } +, +{ "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.435267, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435310, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762556 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.762522 ] } } +, +{ "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.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 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.438056, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "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.437885, 37.757416 ] } } +, +{ "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.439022, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753531 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760961 ] } } +, +{ "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.434859, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.759400 ] } } +, +{ "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.432907, 37.760961 ] } } +, +{ "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.757636 ] } } +, +{ "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.434494, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474105, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473848, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470758, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749052 ] } } +, +{ "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.466509, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.752954 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743215 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741213 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743079 ] } } +, +{ "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.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470200, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736393 ] } } +, +{ "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.468483, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466123, 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.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465866, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740941 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "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.465780, 37.740805 ] } } +, +{ "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.469063, 37.738107 ] } } +, +{ "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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461360, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753090 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458827, 37.747915 ] } } +, +{ "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.747117 ] } } +, +{ "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.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.745387 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457197, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455609, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453849, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.740245 ] } } +, +{ "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.740093 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743486 ] } } +, +{ "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.742876 ] } } +, +{ "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.453957, 37.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734629 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "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.734323 ] } } +, +{ "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.471273, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.731201 ] } } +, +{ "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.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469599, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.734866 ] } } +, +{ "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.465522, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "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.467883, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467582, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "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.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721085 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.721493 ] } } +, +{ "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.471552, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727229 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "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.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 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.458527, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457669, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457669, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724921 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719999 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720101 ] } } +, +{ "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.458098, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458355, 37.724276 ] } } +, +{ "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.456253, 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 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456253, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456253, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "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.719999 ] } } +, +{ "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.452047, 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.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451918, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.745013 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.749306 ] } } +, +{ "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.442820, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750714 ] } } +, +{ "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.447927, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746846 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747050 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746710 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 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.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450373, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738192 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.741399 ] } } +, +{ "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.447755, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.445674, 37.736801 ] } } +, +{ "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": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442477, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750765 ] } } +, +{ "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.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.750986 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434194, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.746303 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746269 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.748271 ] } } +, +{ "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.738294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738684 ] } } +, +{ "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.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.740195 ] } } +, +{ "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.432821, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734357 ] } } +, +{ "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.448807, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731421 ] } } +, +{ "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.452304, 37.727637 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.729809 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.731659 ] } } +, +{ "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.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "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.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "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.451789, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720644 ] } } +, +{ "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.449987, 37.722138 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 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 & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720712 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.720474 ] } } +, +{ "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.447155, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720644 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720576 ] } } +, +{ "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.446554, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 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.444751, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445266, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731404 ] } } +, +{ "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.433851, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.733339 ] } } +, +{ "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.434022, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725906 ] } } +, +{ "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.442391, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727161 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "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.438679, 37.723682 ] } } +, +{ "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.437499, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.723835 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724310 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.726177 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.722392 ] } } +, +{ "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.432692, 37.721646 ] } } +, +{ "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.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.772021 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431147, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761233 ] } } +, +{ "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.431340, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "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.456081, 37.718183 ] } } +, +{ "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.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448614, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.430139, 37.718183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 37.831802 ] } } +, +{ "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.502429, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833158 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832853 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829531 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803969 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480500, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 37.792321 ] } } +, +{ "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.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "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.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466938, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460372, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798442 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "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.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.803867 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454364, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802307 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798272 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455008, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453420, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799052 ] } } +, +{ "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.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "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.804562 ] } } +, +{ "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.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800985 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445524, 37.795763 ] } } +, +{ "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.447627, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447412, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "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.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439687, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800375 ] } } +, +{ "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.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796882 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802833 ] } } +, +{ "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.435181, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "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.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800917 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437069, 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.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432606, 37.797526 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442005, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438700, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 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.440889, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795865 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 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.436297, 37.794067 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 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.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "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.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440331, 37.787013 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801528 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.428980, 37.719711 ] } } +, +{ "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.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718947 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.718964 ] } } +, +{ "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 ] } } +, +{ "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 & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 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.408895, 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.400506, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 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": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711750 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711122 ] } } +, +{ "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.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710052 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.713719 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.709000 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712429 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710629 ] } } +, +{ "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.415504, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415912, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.711631 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.711682 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.710986 ] } } +, +{ "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.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710748 ] } } +, +{ "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.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 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.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707913 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412951, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "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.716672 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.716604 ] } } +, +{ "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": "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.409067, 37.713855 ] } } +, +{ "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.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710018 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 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.404969, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716367 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "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.402008, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "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.405055, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "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.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397244, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711003 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389219, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.786165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 37.778551 ] } } +, +{ "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.432477, 37.775633 ] } } +, +{ "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": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763964 ] } } +, +{ "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": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "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 & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.721646 ] } } +, +{ "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.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 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.408509, 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.408316, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "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.402501, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "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.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785046 ] } } +, +{ "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.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786131 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "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.421448, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783214 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426341, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "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.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 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.427328, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425225, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 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.773836 ] } } +, +{ "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.770969 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.771783 ] } } +, +{ "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.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "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": "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.419174, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "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.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779704 ] } } +, +{ "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.418702, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.782638 ] } } +, +{ "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.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786572 ] } } +, +{ "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.787657 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414281, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413166, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781078 ] } } +, +{ "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.412457, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781179 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778703 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778194 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.778398 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 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.419388, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "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.418530, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777720 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777380 ] } } +, +{ "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.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774938 ] } } +, +{ "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.418616, 37.773327 ] } } +, +{ "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.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.774226 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415397, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415011, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 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.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776227 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771749 ] } } +, +{ "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.412651, 37.770850 ] } } +, +{ "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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767780 ] } } +, +{ "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.429130, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767780 ] } } +, +{ "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.767305 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.764744 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.768391 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421792, 37.763099 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "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.427928, 37.758281 ] } } +, +{ "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.757467 ] } } +, +{ "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.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761402 ] } } +, +{ "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.421749, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.761436 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759875 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758756 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757161 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755566 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 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.420032, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765270 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765066 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763845 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.769680 ] } } +, +{ "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.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760673 ] } } +, +{ "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.419109, 37.758179 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761877 ] } } +, +{ "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.418873, 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.418573, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760384 ] } } +, +{ "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.414496, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786335 ] } } +, +{ "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.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783927 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408230, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786403 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785860 ] } } +, +{ "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.404282, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "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.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 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.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.782604 ] } } +, +{ "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.404754, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399046, 37.786216 ] } } +, +{ "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.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.783045 ] } } +, +{ "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.780399 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773547 ] } } +, +{ "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.408187, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774395 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405913, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "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.402608, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771715 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785758 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785521 ] } } +, +{ "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.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "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.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391965, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780637 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395141, 37.777126 ] } } +, +{ "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.394884, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776295 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772903 ] } } +, +{ "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.393038, 37.778737 ] } } +, +{ "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.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.776193 ] } } +, +{ "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.389712, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771173 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766355 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765711 ] } } +, +{ "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.407544, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404454, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762216 ] } } +, +{ "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.403166, 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 & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767475 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.764829 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764829 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764829 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401536, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399304, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406857, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754311 ] } } +, +{ "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.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759570 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759604 ] } } +, +{ "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.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753395 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "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.400591, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.762590 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "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.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770528 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766780 ] } } +, +{ "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.389305, 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.389369, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766593 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389004, 37.767204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "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.764252 ] } } +, +{ "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.763370 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762997 ] } } +, +{ "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.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759875 ] } } +, +{ "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.396343, 37.760147 ] } } +, +{ "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.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760045 ] } } +, +{ "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.398059, 37.757467 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754718 ] } } +, +{ "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.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393982, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758043 ] } } +, +{ "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.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.758026 ] } } +, +{ "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.755024 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755702 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755329 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749187 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "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.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.742231 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427585, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.743826 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739821 ] } } +, +{ "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.424324, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739007 ] } } +, +{ "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.424216, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "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": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416084, 37.749119 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.748000 ] } } +, +{ "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.418187, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "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.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748305 ] } } +, +{ "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.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 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.413595, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.746880 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.748407 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744301 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.739923 ] } } +, +{ "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.418466, 37.739312 ] } } +, +{ "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.413166, 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.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 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.413681, 37.739007 ] } } +, +{ "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.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737174 ] } } +, +{ "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.412007, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739584 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429345, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428014, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429731, 37.730454 ] } } +, +{ "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.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424710, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728723 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429473, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "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.721561 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427628, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.721221 ] } } +, +{ "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.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725091 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.725600 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720406 ] } } +, +{ "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 ] } } +, +{ "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.420075, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "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": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 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.413595, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 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.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414410, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726415 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718913 ] } } +, +{ "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.414024, 37.726483 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "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.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.753073 ] } } +, +{ "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.409089, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "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.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 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.742876 ] } } +, +{ "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.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742859 ] } } +, +{ "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.739685 ] } } +, +{ "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 & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737955 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "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.398832, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751291 ] } } +, +{ "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.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752513 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747355 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.737106 ] } } +, +{ "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.394691, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "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.740907 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 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.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391279, 37.739770 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.737955 ] } } +, +{ "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.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.727331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "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.400677, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399476, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 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.727535 ] } } +, +{ "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.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730386 ] } } +, +{ "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.400892, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726686 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.723631 ] } } +, +{ "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.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720780 ] } } +, +{ "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.405097, 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.401879, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723886 ] } } +, +{ "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.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401407, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.395570, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +, +{ "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.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391579, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732287 ] } } +, +{ "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.391365, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.734510 ] } } +, +{ "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.390184, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389047, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732932 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729232 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729300 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724174 ] } } +, +{ "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.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398446, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "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.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722647 ] } } +, +{ "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.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.722036 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "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.389605, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386901, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755397 ] } } +, +{ "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.387674, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752818 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387588, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748950 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746065 ] } } +, +{ "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.387159, 37.741416 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741145 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384455, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.738973 ] } } +, +{ "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.382653, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382824, 37.739719 ] } } +, +{ "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.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737683 ] } } +, +{ "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.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387331, 37.731862 ] } } +, +{ "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.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386000, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383339, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729571 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383597, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382696, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729436 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734187 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382138, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380035, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731642 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730590 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728689 ] } } +, +{ "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.377031, 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.386773, 37.726126 ] } } +, +{ "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 & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 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.428358, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "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.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797441 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.806173 ] } } +, +{ "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 & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808038 ] } } +, +{ "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.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "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.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806512 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801918 ] } } +, +{ "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.426233, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "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.797797 ] } } +, +{ "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.427392, 37.798069 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 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.425354, 37.804851 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425010, 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.805325 ] } } +, +{ "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.423809, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 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.424431, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 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.798815 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.793152 ] } } +, +{ "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.426212, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427156, 37.790693 ] } } +, +{ "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.424624, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.796187 ] } } +, +{ "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.421491, 37.795118 ] } } +, +{ "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.423379, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 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.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794203 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.791049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791151 ] } } +, +{ "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.422307, 37.791388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422349, 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": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420847, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420847, 37.790506 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789523 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 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.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.800222 ] } } +, +{ "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.419174, 37.800188 ] } } +, +{ "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": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.797407 ] } } +, +{ "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.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "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.414968, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803291 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802613 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802104 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.802782 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.801188 ] } } +, +{ "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.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800917 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.800510 ] } } +, +{ "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.409947, 37.800426 ] } } +, +{ "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.412028, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796509 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795390 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795356 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418058, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794661 ] } } +, +{ "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.416298, 37.793830 ] } } +, +{ "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.416041, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790879 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.789675 ] } } +, +{ "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.417457, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796136 ] } } +, +{ "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.411535, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795458 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "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.411363, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411063, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "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.414110, 37.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.806105 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.806953 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406042, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.806614 ] } } +, +{ "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.408059, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803020 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.802613 ] } } +, +{ "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.405698, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.797204 ] } } +, +{ "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.797865 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800917 ] } } +, +{ "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.406900, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.805156 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402952, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802172 ] } } +, +{ "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.399390, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "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.403595, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.798408 ] } } +, +{ "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.398939, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798543 ] } } +, +{ "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.408338, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "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.409647, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.793050 ] } } +, +{ "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.409260, 37.792880 ] } } +, +{ "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": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.794712 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "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.404368, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792032 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792134 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792134 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.791100 ] } } +, +{ "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.407544, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790167 ] } } +, +{ "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.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406943, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789828 ] } } +, +{ "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.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792778 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794033 ] } } +, +{ "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.401321, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400119, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "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.399690, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789082 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798984 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798917 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797085 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 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.396128, 37.793508 ] } } +, +{ "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.795017 ] } } +, +{ "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.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET 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": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "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.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393425, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791659 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.789930 ] } } +, +{ "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.396386, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.792405 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.790845 ] } } +, +{ "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.393339, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "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.394261, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789726 ] } } +, +{ "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": "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.792728 ] } } +, +{ "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.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390206, 37.790812 ] } } +, +{ "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.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388790, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789692 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 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.377417, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 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.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375658, 37.824480 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824175 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370079, 37.825209 ] } } +, +{ "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.825328 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366345, 37.820006 ] } } +, +{ "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.371151, 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.370872, 37.813157 ] } } +, +{ "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.811818 ] } } +, +{ "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.364843, 37.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "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.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 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.786776 ] } } +, +{ "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.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.527256, 37.832590 ] } } +, +{ "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.523458, 37.831667 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829065 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825040 ] } } +, +{ "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.830379 ] } } +, +{ "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.831345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.483225, 37.718616 ] } } +, +{ "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.475640, 37.719108 ] } } +, +{ "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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485124, 37.714780 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716341 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711537 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480232, 37.714491 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477442, 37.717496 ] } } +, +{ "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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715849 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715985 ] } } +, +{ "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.709135 ] } } +, +{ "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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 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.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752844 ] } } +, +{ "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.504457, 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.503577, 37.753132 ] } } +, +{ "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.507011, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745446 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506710, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747465 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747431 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.747296 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745599 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745429 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.501947, 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.747686 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497634, 37.747635 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504843, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504672, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504715, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504500, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504543, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504586, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738150 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504414, 37.739830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505316, 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.504275, 37.737980 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736130 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502612, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502354, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500209, 37.742027 ] } } +, +{ "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.498063, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735570 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735536 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735401 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735604 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "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.734136 ] } } +, +{ "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.499222, 37.731608 ] } } +, +{ "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.726763 ] } } +, +{ "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.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.495134, 37.753302 ] } } +, +{ "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.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 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.494876, 37.749569 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747584 ] } } +, +{ "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.495370, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747771 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493106, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747838 ] } } +, +{ "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.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490960, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491218, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748008 ] } } +, +{ "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.487935, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486926, 37.748127 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486669, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487677, 37.746167 ] } } +, +{ "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.743987 ] } } +, +{ "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.494651, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494222, 37.742273 ] } } +, +{ "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.492967, 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.494394, 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.494286, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494093, 37.738387 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494158, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493922, 37.736546 ] } } +, +{ "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.489759, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487656, 37.744513 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487570, 37.744275 ] } } +, +{ "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.487345, 37.742596 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487624, 37.742468 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487398, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487227, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487141, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 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.484781, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484587, 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.748466 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748364 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 37.748551 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479438, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.475908, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742545 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 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.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "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.496829, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496850, 37.733602 ] } } +, +{ "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.496647, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493793, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733738 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493685, 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.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493664, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734145 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 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.489265, 37.734247 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483965, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "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.486411, 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.480071, 37.734654 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479631, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734756 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728002 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478493, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730428 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726067 ] } } +, +{ "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.484899, 37.724234 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726983 ] } } +, +{ "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.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483064, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482549, 37.721841 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483085, 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.483225, 37.718616 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.720737 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725956 ] } } +, +{ "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.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "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.480907, 37.720687 ] } } +, +{ "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.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.719609 ] } } +, +{ "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.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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 & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475296, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721179 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509950, 37.779916 ] } } +, +{ "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.779780 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512053, 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.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510251, 37.775014 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 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.773658 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509886, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "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.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507397, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504114, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779746 ] } } +, +{ "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.504243, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779560 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784987 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781095 ] } } +, +{ "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.779051 ] } } +, +{ "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.503846, 37.775354 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503620, 37.775489 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773539 ] } } +, +{ "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.771486 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505680, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503545, 37.771741 ] } } +, +{ "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.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.779153 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775642 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 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.500348, 37.771885 ] } } +, +{ "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.499919, 37.771792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510294, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510465, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510058, 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.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509081, 37.760342 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "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.764193 ] } } +, +{ "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.506120, 37.764040 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506152, 37.762378 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505981, 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.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508041, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508008, 37.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506024, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760495 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760495 ] } } +, +{ "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.506056, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505852, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505895, 37.758663 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505723, 37.758493 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754930 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754761 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502590, 37.760647 ] } } +, +{ "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.499372, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760749 ] } } +, +{ "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.499146, 37.760647 ] } } +, +{ "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.496411, 37.779678 ] } } +, +{ "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.494404, 37.781646 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492344, 37.782002 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781747 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781510 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493364, 37.781544 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779695 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779746 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493407, 37.779577 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493385, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 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.490520, 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.490617, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489973, 37.779967 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783664 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489297, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "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.488053, 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.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493256, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493085, 37.777694 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494587, 37.775905 ] } } +, +{ "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.496797, 37.771927 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496346, 37.772080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771978 ] } } +, +{ "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.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777745 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776032 ] } } +, +{ "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.489920, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489630, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489415, 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.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487270, 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.485145, 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.485296, 37.783816 ] } } +, +{ "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.784011 ] } } +, +{ "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.484856, 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.481669, 37.784105 ] } } +, +{ "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.484984, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484716, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.780255 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779984 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779933 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481787, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482699, 37.780085 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478451, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780459 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 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.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484695, 37.778288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484566, 37.776422 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484373, 37.776193 ] } } +, +{ "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.776337 ] } } +, +{ "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.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772606 ] } } +, +{ "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.484083, 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.481347, 37.772767 ] } } +, +{ "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.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477914, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480618, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 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.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 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.495381, 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.494715, 37.764761 ] } } +, +{ "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.764736 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764888 ] } } +, +{ "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.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760834 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.760783 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.760919 ] } } +, +{ "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.759138 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 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.495595, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757034 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495466, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495273, 37.755168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489737, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 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.486765, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765227 ] } } +, +{ "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.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763141 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480382, 37.765194 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 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.480274, 37.763684 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477614, 37.765533 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.765550 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 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.763438 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483557, 37.761343 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.761580 ] } } +, +{ "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.481240, 37.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754048 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "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.761496 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480114, 37.761462 ] } } +, +{ "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.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477120, 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.476830, 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.760155 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759952 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476541, 37.757865 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756016 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755906 ] } } +, +{ "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.480886, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756228 ] } } +, +{ "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.754124 ] } } +, +{ "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.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752844 ] } } +, +{ "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.504457, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503577, 37.753132 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.495134, 37.753302 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "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.773055 ] } } +, +{ "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.765465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792227 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482270, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 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.807470 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485145, 37.787539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 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.508727, 37.832963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502419, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494029, 37.833887 ] } } +, +{ "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.494018, 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.483836, 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.483557, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.832844 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484030, 37.829523 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "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.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474438, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717445 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718056 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472979, 37.717326 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474588, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716019 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715221 ] } } +, +{ "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.473097, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717377 ] } } +, +{ "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.716206 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470254, 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.474481, 37.713591 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713006 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710714 ] } } +, +{ "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.470039, 37.714415 ] } } +, +{ "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.469642, 37.714321 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714287 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466992, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469267, 37.712488 ] } } +, +{ "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.469460, 37.710366 ] } } +, +{ "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.467228, 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.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466906, 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.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.705766 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707056 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714355 ] } } +, +{ "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.462593, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713184 ] } } +, +{ "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.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713159 ] } } +, +{ "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.459139, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460276, 37.710137 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "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.716435 ] } } +, +{ "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.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715866 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714848 ] } } +, +{ "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.711495 ] } } +, +{ "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.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713286 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713167 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711707 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "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.710298 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705986 ] } } +, +{ "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.460684, 37.706156 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459203, 37.706615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 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.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448646, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 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.450341, 37.716265 ] } } +, +{ "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.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448345, 37.710485 ] } } +, +{ "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.442659, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 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.445695, 37.711724 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.452208, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450877, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "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.441179, 37.716511 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441157, 37.716460 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440792, 37.716647 ] } } +, +{ "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.440406, 37.717156 ] } } +, +{ "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.716418 ] } } +, +{ "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.439623, 37.715679 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439312, 37.715722 ] } } +, +{ "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.437595, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712463 ] } } +, +{ "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.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710213 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714457 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713490 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436630, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.714033 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709976 ] } } +, +{ "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.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713337 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 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 & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 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.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434591, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708974 ] } } +, +{ "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.432510, 37.709636 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "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.710570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.475908, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730428 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 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.473097, 37.752402 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471970, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474095, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748840 ] } } +, +{ "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.472990, 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.746753 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "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.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470747, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749043 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.749332 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748840 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748992 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467057, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 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.471412, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471305, 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.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.471198, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470189, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 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.736393 ] } } +, +{ "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.741442 ] } } +, +{ "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.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741102 ] } } +, +{ "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.466016, 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.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465941, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465855, 37.740899 ] } } +, +{ "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.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465726, 37.740882 ] } } +, +{ "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.465533, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465919, 37.740771 ] } } +, +{ "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.465780, 37.740797 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465748, 37.740848 ] } } +, +{ "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.469052, 37.738099 ] } } +, +{ "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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737861 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739847 ] } } +, +{ "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.466778, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465276, 37.739558 ] } } +, +{ "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.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454396, 37.751351 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 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.458785, 37.748280 ] } } +, +{ "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.458946, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458731, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458817, 37.747906 ] } } +, +{ "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.747262 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.457100, 37.745378 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457186, 37.745293 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747805 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "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.455555, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453839, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745701 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740407 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463688, 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.740237 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "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.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.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744157 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456414, 37.744004 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741628 ] } } +, +{ "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.455781, 37.743478 ] } } +, +{ "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.742876 ] } } +, +{ "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.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 37.736741 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474502, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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.735044 ] } } +, +{ "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.471627, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 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.734315 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735486 ] } } +, +{ "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.471262, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471455, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471713, 37.731633 ] } } +, +{ "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.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474545, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474374, 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.731243 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471820, 37.731277 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471691, 37.730955 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469803, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469589, 37.734866 ] } } +, +{ "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.468076, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466370, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.734866 ] } } +, +{ "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.465512, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469481, 37.729953 ] } } +, +{ "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.469106, 37.729996 ] } } +, +{ "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.467571, 37.728290 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475296, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721179 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.474588, 37.719532 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472721, 37.721493 ] } } +, +{ "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.471745, 37.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471541, 37.719719 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727221 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727204 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469739, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719753 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719770 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719617 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463967, 37.732041 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460812, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735316 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 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.461864, 37.729979 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 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.458967, 37.733610 ] } } +, +{ "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.458516, 37.732618 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732244 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457658, 37.732092 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.730700 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "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.726016 ] } } +, +{ "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.724964 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719795 ] } } +, +{ "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.461338, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461113, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460126, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458087, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.723640 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454225, 37.723453 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454203, 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.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458066, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457036, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.721764 ] } } +, +{ "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.456242, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720075 ] } } +, +{ "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.452036, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450341, 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.452390, 37.745336 ] } } +, +{ "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.451907, 37.745327 ] } } +, +{ "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.451317, 37.745005 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745938 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446092, 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.446586, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750417 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751690 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749128 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 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.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749959 ] } } +, +{ "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.447927, 37.746464 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747932 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444912, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746837 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747050 ] } } +, +{ "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.443968, 37.748975 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746702 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443217, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443045, 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.451189, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450684, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450663, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 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.449225, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740831 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449182, 37.740712 ] } } +, +{ "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.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451500, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740203 ] } } +, +{ "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.740186 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450362, 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.741391 ] } } +, +{ "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.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447745, 37.739898 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736843 ] } } +, +{ "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.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442466, 37.752301 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442616, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749077 ] } } +, +{ "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.440513, 37.750977 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440921, 37.749315 ] } } +, +{ "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.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438368, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.440299, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 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.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751232 ] } } +, +{ "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.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "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.434055, 37.751893 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751367 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433840, 37.749603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748856 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 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.435846, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.747075 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.746294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746261 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743597 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743631 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743257 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.743088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435750, 37.741594 ] } } +, +{ "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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436908, 37.738608 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738676 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436308, 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.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738896 ] } } +, +{ "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.738269 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737318 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 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.434226, 37.740195 ] } } +, +{ "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.434076, 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.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734196 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.732991 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.731701 ] } } +, +{ "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.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452294, 37.727628 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285, 37.728426 ] } } +, +{ "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.449172, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.729801 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446328, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.733992 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733958 ] } } +, +{ "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.445588, 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.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.731650 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731515 ] } } +, +{ "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.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453216, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.723546 ] } } +, +{ "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.452658, 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.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451457, 37.723046 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723029 ] } } +, +{ "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.451779, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451650, 37.719787 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720636 ] } } +, +{ "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.450287, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.722129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449354, 37.721637 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720398 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.723012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 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.444419, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447230, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.720992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720907 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 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.446232, 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.446768, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446779, 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.446897, 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.447144, 37.719863 ] } } +, +{ "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.447616, 37.719397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720636 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 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.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444977, 37.722859 ] } } +, +{ "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.444794, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444741, 37.722825 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 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.445266, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735010 ] } } +, +{ "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.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731515 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440020, 37.729003 ] } } +, +{ "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.728816 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727747 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.731396 ] } } +, +{ "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.733933 ] } } +, +{ "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.433840, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "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.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.733398 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.733602 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433861, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732533 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731328 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729801 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729597 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442402, 37.725906 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 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.442380, 37.725676 ] } } +, +{ "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.441329, 37.723368 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441243, 37.723266 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723674 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 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.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435900, 37.723826 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "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.435771, 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.434763, 37.724590 ] } } +, +{ "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.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723945 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435685, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433518, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433583, 37.726169 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723962 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434570, 37.722384 ] } } +, +{ "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.721620 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432681, 37.721646 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "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.431308, 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.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.718056 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448646, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 37.718285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "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.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473258, 37.784520 ] } } +, +{ "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.472721, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.784503 ] } } +, +{ "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.470855, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471112, 37.784461 ] } } +, +{ "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.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 37.782494 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780713 ] } } +, +{ "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.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.780577 ] } } +, +{ "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.470608, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784673 ] } } +, +{ "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.467046, 37.784749 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466713, 37.784469 ] } } +, +{ "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.464718, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469009, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782901 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465426, 37.783138 ] } } +, +{ "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.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.776795 ] } } +, +{ "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.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471949, 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.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471992, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468172, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.777202 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775269 ] } } +, +{ "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.468398, 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.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 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.465748, 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.784681 ] } } +, +{ "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.785360 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785707 ] } } +, +{ "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.783223 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 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.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 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.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459825, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781052 ] } } +, +{ "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.456843, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785665 ] } } +, +{ "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.458860, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783867 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783257 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.783079 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 37.781154 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781086 ] } } +, +{ "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.455684, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464246, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464052, 37.779008 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463924, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775455 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461756, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464117, 37.773674 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773742 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463838, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773946 ] } } +, +{ "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.458870, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "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.455373, 37.777643 ] } } +, +{ "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.458516, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774285 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454847, 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.454525, 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.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 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.765465 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765719 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765821 ] } } +, +{ "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.470340, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770537 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770443 ] } } +, +{ "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.468719, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.766008 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766025 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466348, 37.765855 ] } } +, +{ "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.466520, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764294 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464610, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763803 ] } } +, +{ "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.764108 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763947 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763921 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762233 ] } } +, +{ "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.466316, 37.762106 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761920 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.759307 ] } } +, +{ "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.473676, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 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.472700, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.759138 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473687, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756304 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 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.754116 ] } } +, +{ "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.469524, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470082, 37.758306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.758204 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468129, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467936, 37.758408 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.760410 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465962, 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.466059, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.758527 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 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.754812 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465554, 37.754642 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464288, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 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.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762403 ] } } +, +{ "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.461070, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460147, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460748, 37.762734 ] } } +, +{ "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.762530 ] } } +, +{ "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.765991 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764447 ] } } +, +{ "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.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.456521, 37.764939 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458752, 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.763726 ] } } +, +{ "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.454708, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454311, 37.764244 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.758612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463881, 37.758476 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758696 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461907, 37.757729 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463580, 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.463806, 37.754659 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463559, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756915 ] } } +, +{ "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.461091, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.456360, 37.755346 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786716 ] } } +, +{ "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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.784376 ] } } +, +{ "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.784995 ] } } +, +{ "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.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449998, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.782036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787361 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787191 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.785241 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 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.787742 ] } } +, +{ "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.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447294, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 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.445803, 37.782714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 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.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777762 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778101 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451371, 37.778016 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778356 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 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.449300, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453130, 37.774913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.774997 ] } } +, +{ "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.452766, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452508, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773064 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "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.449172, 37.773607 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449472, 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.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447144, 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.446918, 37.777541 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445449, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777575 ] } } +, +{ "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.446586, 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.446285, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445256, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.778966 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443603, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.776948 ] } } +, +{ "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.443432, 37.777101 ] } } +, +{ "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.447573, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447315, 37.773742 ] } } +, +{ "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.774065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446522, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445685, 37.773954 ] } } +, +{ "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.445738, 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.774200 ] } } +, +{ "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.440728, 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.787005 ] } } +, +{ "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.439945, 37.785156 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785343 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439741, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439440, 37.785266 ] } } +, +{ "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.438089, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 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.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439376, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439419, 37.783375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 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.439237, 37.781612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439076, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783630 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438818, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.780730 ] } } +, +{ "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.785801 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "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.786165 ] } } +, +{ "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.433057, 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.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781086 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780933 ] } } +, +{ "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.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "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.779170 ] } } +, +{ "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.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440170, 37.777525 ] } } +, +{ "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.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438518, 37.777737 ] } } +, +{ "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.438228, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438067, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441264, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.770757 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "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.774726 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437874, 37.774896 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437359, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437381, 37.771300 ] } } +, +{ "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.436469, 37.775218 ] } } +, +{ "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.434452, 37.775472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "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.434183, 37.775421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771334 ] } } +, +{ "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.433861, 37.771605 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.771783 ] } } +, +{ "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.452852, 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.453474, 37.768332 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453345, 37.768247 ] } } +, +{ "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.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450792, 37.769604 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769451 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450620, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769722 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448474, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768535 ] } } +, +{ "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.452937, 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.765338 ] } } +, +{ "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.452658, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451113, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.764608 ] } } +, +{ "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.765948 ] } } +, +{ "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.450137, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765567 ] } } +, +{ "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.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449719, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769943 ] } } +, +{ "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.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445427, 37.770316 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770096 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 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.446479, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446285, 37.767161 ] } } +, +{ "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.770214 ] } } +, +{ "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.443560, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442960, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444826, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447788, 37.766296 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766160 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447766, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445878, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.763022 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442809, 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.443711, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442917, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448989, 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.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.760927 ] } } +, +{ "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.446640, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760868 ] } } +, +{ "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.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 37.758798 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 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.445223, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.761207 ] } } +, +{ "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.445084, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 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.443550, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443496, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759799 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "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.443432, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443281, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755354 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755490 ] } } +, +{ "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.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767738 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768671 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766500 ] } } +, +{ "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.438282, 37.766703 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.766856 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441028, 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.437499, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 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.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769400 ] } } +, +{ "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.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.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.765838 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449, 37.764278 ] } } +, +{ "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": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435299, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435235, 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.435396, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762556 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 37.762378 ] } } +, +{ "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.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763964 ] } } +, +{ "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.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760495 ] } } +, +{ "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.438196, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438046, 37.759036 ] } } +, +{ "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.441157, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437853, 37.757568 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.757416 ] } } +, +{ "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.755821 ] } } +, +{ "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.435160, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.760842 ] } } +, +{ "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.434849, 37.760851 ] } } +, +{ "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.435975, 37.757679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.756101 ] } } +, +{ "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.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.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "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.752776 ] } } +, +{ "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.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "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.807470 ] } } +, +{ "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472121, 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.466810, 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.801027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467314, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802909 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459139, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460362, 37.798535 ] } } +, +{ "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.458001, 37.803808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456821, 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.456789, 37.801638 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456735, 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.456285, 37.803859 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "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.802307 ] } } +, +{ "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.456328, 37.801587 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.801434 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.797959 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797738 ] } } +, +{ "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.454740, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 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.453946, 37.800536 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456306, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798264 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455105, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454997, 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.799111 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.799078 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799128 ] } } +, +{ "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.450137, 37.798060 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804350 ] } } +, +{ "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.804562 ] } } +, +{ "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.443432, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802485 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444805, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802858 ] } } +, +{ "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.443324, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800332 ] } } +, +{ "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.447144, 37.798425 ] } } +, +{ "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.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800977 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.800044 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798671 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "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.795754 ] } } +, +{ "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.445320, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.790913 ] } } +, +{ "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.790718 ] } } +, +{ "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.447047, 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.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791193 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441286, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800451 ] } } +, +{ "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.439430, 37.799298 ] } } +, +{ "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.437466, 37.800722 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796882 ] } } +, +{ "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.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804452 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.803554 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802825 ] } } +, +{ "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.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804876 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433347, 37.803435 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 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.433068, 37.801163 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801316 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436479, 37.800892 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +, +{ "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.436136, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "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.800951 ] } } +, +{ "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.797399 ] } } +, +{ "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.435589, 37.796975 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432595, 37.797518 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.796178 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438689, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 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.440900, 37.789972 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439247, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "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.795865 ] } } +, +{ "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.436286, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434849, 37.794160 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "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.433400, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 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.436329, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436115, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434613, 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.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 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.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789582 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788938 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433926, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432510, 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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "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.440728, 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.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801519 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.427188, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718938 ] } } +, +{ "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.427070, 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.718904 ] } } +, +{ "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.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 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.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717563 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428358, 37.717487 ] } } +, +{ "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.710570 ] } } +, +{ "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.428197, 37.711877 ] } } +, +{ "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.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422789, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 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.422124, 37.713710 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421159, 37.713226 ] } } +, +{ "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.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423111, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708991 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712980 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419549, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.712607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712420 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418691, 37.711860 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418884, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 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.415494, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712030 ] } } +, +{ "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.414474, 37.718124 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.715034 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 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.412640, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412790, 37.711062 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.710986 ] } } +, +{ "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.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710595 ] } } +, +{ "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.710366 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709874 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420365, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 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.418240, 37.707905 ] } } +, +{ "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.707141 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 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.412940, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.706530 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708261 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407190, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717292 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716664 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405730, 37.716604 ] } } +, +{ "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.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717054 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715348 ] } } +, +{ "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.409056, 37.713846 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 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.408971, 37.711707 ] } } +, +{ "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.409528, 37.710010 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408541, 37.709908 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 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.404969, 37.713218 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "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.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716290 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716104 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 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.399937, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.716358 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716273 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714678 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714814 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.713846 ] } } +, +{ "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.401997, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "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.402383, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402426, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402319, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712250 ] } } +, +{ "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.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 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.400688, 37.712021 ] } } +, +{ "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.398961, 37.711622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 37.709865 ] } } +, +{ "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.406696, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708974 ] } } +, +{ "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.405055, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 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.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711198 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397233, 37.711215 ] } } +, +{ "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.710977 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394766, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.711249 ] } } +, +{ "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.389219, 37.717020 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "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.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392899, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "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.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 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.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429774, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427553, 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.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427360, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427124, 37.749187 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427081, 37.746990 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746787 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425321, 37.751910 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751792 ] } } +, +{ "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.422993, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743605 ] } } +, +{ "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.426662, 37.742816 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426630, 37.742646 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742103 ] } } +, +{ "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.426469, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 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.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737115 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.742171 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421137, 37.743817 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422178, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742443 ] } } +, +{ "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.425504, 37.739626 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424291, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424163, 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.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738998 ] } } +, +{ "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.424206, 37.737064 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 37.737454 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424334, 37.736215 ] } } +, +{ "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.420912, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 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.752326 ] } } +, +{ "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.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420450, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.750282 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418498, 37.750672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 37.752318 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416180, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416159, 37.752453 ] } } +, +{ "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.749009 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416073, 37.749111 ] } } +, +{ "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.748000 ] } } +, +{ "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.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.748577 ] } } +, +{ "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.418090, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 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.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.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414249, 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.414035, 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.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414056, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413884, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413863, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413713, 37.749230 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413799, 37.748483 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748347 ] } } +, +{ "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.748381 ] } } +, +{ "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.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.746871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413498, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.745327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411910, 37.748407 ] } } +, +{ "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.748347 ] } } +, +{ "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.409765, 37.748237 ] } } +, +{ "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.419978, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419699, 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.418466, 37.739304 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 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.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410473, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410516, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741459 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.741238 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409786, 37.741832 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "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.413670, 37.739007 ] } } +, +{ "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.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737166 ] } } +, +{ "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.413530, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739575 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411417, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739796 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735638 ] } } +, +{ "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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429334, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732176 ] } } +, +{ "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.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429656, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429720, 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.431308, 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.728782 ] } } +, +{ "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.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728613 ] } } +, +{ "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.424710, 37.735621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.735918 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422575, 37.735248 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735078 ] } } +, +{ "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.426094, 37.728562 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730955 ] } } +, +{ "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.422575, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430600, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723996 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.723114 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429473, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 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.427628, 37.721365 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427768, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426480, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.720907 ] } } +, +{ "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.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426180, 37.720415 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718938 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724658 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424377, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424227, 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.423251, 37.725201 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 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.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426051, 37.720406 ] } } +, +{ "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.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735061 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.732295 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417017, 37.735647 ] } } +, +{ "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.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417768, 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.415268, 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.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416116, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734739 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734875 ] } } +, +{ "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.413648, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 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.413595, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413927, 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.734917 ] } } +, +{ "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.729851 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.729936 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414571, 37.727408 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414399, 37.727391 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730921 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730972 ] } } +, +{ "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.420290, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726406 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "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.718904 ] } } +, +{ "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.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.724998 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.722944 ] } } +, +{ "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.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.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722842 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752521 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.751308 ] } } +, +{ "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.408895, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408735, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 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.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 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.402233, 37.751893 ] } } +, +{ "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.750842 ] } } +, +{ "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.750723 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400151, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 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.409410, 37.742867 ] } } +, +{ "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.405237, 37.743325 ] } } +, +{ "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.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 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.739677 ] } } +, +{ "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.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.406771, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 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.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403349, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "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.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398821, 37.743902 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400452, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403735, 37.738795 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739134 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739558 ] } } +, +{ "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.398896, 37.736368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.752385 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 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.752250 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.751435 ] } } +, +{ "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.749035 ] } } +, +{ "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.749874 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396225, 37.750010 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752504 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396268, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393929, 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.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392770, 37.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 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.738218 ] } } +, +{ "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.396729, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.737166 ] } } +, +{ "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.394680, 37.736224 ] } } +, +{ "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.736640 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390538, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390474, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740907 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742714 ] } } +, +{ "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.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.388157, 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.739762 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738082 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390517, 37.737522 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391654, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391526, 37.736309 ] } } +, +{ "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.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.389809, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389637, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737929 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732176 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733279 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404722, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733059 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728002 ] } } +, +{ "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.404518, 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.402576, 37.734170 ] } } +, +{ "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.401074, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400666, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399465, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731905 ] } } +, +{ "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.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403649, 37.727526 ] } } +, +{ "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.727747 ] } } +, +{ "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.401450, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.728086 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.730378 ] } } +, +{ "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.401021, 37.729122 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729105 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408456, 37.726287 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.407469, 37.726678 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408649, 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.407640, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720771 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726372 ] } } +, +{ "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.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.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.723563 ] } } +, +{ "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.723402 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.720933 ] } } +, +{ "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.721612 ] } } +, +{ "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.401160, 37.721450 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721484 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400430, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395560, 37.731803 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395281, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395409, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395259, 37.729733 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727925 ] } } +, +{ "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.735036 ] } } +, +{ "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.392663, 37.735036 ] } } +, +{ "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.735689 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392083, 37.735672 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735078 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390839, 37.734366 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390732, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 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.734026 ] } } +, +{ "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.390860, 37.733856 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391568, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732287 ] } } +, +{ "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.391504, 37.732270 ] } } +, +{ "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.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735418 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 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.390184, 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.389036, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732923 ] } } +, +{ "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.730445 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392856, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 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.392598, 37.729240 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729207 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393028, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728086 ] } } +, +{ "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.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725676 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725490 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394208, 37.725303 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724166 ] } } +, +{ "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.395248, 37.723131 ] } } +, +{ "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.398435, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.722486 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720788 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 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.396718, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.722418 ] } } +, +{ "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.395420, 37.722638 ] } } +, +{ "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.722384 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.722341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394851, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.722036 ] } } +, +{ "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.727077 ] } } +, +{ "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.391461, 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.389594, 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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "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.748950 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "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.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "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.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "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.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 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.429870, 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.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428712, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786937 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 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.785037 ] } } +, +{ "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.428948, 37.781926 ] } } +, +{ "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.782137 ] } } +, +{ "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.424989, 37.786131 ] } } +, +{ "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.785054 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786581 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422897, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785784 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "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.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784664 ] } } +, +{ "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.421137, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421180, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 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.425536, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.779695 ] } } +, +{ "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.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783206 ] } } +, +{ "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.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778864 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426716, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426330, 37.777389 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428282, 37.776269 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.772148 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430493, 37.772012 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 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.779390 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424957, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423025, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421674, 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.425472, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773819 ] } } +, +{ "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.770961 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422532, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420965, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 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.771775 ] } } +, +{ "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.420204, 37.787802 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419978, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.786920 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 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.420644, 37.785851 ] } } +, +{ "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.419163, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787055 ] } } +, +{ "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.416266, 37.787242 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.785088 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.782867 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783189 ] } } +, +{ "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.419270, 37.782188 ] } } +, +{ "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.420150, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779695 ] } } +, +{ "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.419013, 37.780314 ] } } +, +{ "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.783359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417425, 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.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781697 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782629 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "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.780577 ] } } +, +{ "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.415880, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.780789 ] } } +, +{ "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.414979, 37.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785546 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.784715 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784885 ] } } +, +{ "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.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786988 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787174 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.409775, 37.786106 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785851 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410794, 37.784105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.781078 ] } } +, +{ "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.412447, 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.412618, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.783392 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410237, 37.782324 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781171 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419828, 37.778695 ] } } +, +{ "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.419753, 37.778194 ] } } +, +{ "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.778389 ] } } +, +{ "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.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.775218 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419184, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.775150 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "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.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416760, 37.778746 ] } } +, +{ "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.416245, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416223, 37.777592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775947 ] } } +, +{ "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.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774930 ] } } +, +{ "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.418605, 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.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.774311 ] } } +, +{ "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.416899, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773335 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415386, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } +, +{ "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.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414764, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777236 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776456 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778975 ] } } +, +{ "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.410516, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776227 ] } } +, +{ "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.414228, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771741 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.771597 ] } } +, +{ "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.412640, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429935, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 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.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769417 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429141, 37.769468 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429098, 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.429001, 37.767789 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } +, +{ "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": "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.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.769790 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769434 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 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.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.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "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.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.764464 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428561, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428529, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.764736 ] } } +, +{ "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.424978, 37.770571 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769807 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.770155 ] } } +, +{ "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.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766788 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 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.764854 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765236 ] } } +, +{ "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.430471, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 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.758272 ] } } +, +{ "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.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757458 ] } } +, +{ "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.426931, 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.427757, 37.754608 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761394 ] } } +, +{ "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.761529 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.761767 ] } } +, +{ "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.761428 ] } } +, +{ "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.759867 ] } } +, +{ "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.758747 ] } } +, +{ "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.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755558 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419935, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767806 ] } } +, +{ "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.766686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767144 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768467 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.768467 ] } } +, +{ "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.419678, 37.765126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.765007 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419506, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 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.419356, 37.762641 ] } } +, +{ "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.417650, 37.765261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765380 ] } } +, +{ "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.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.762123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763836 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770367 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 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.410816, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410687, 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.412983, 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.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 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.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "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.419099, 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.417006, 37.758934 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 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.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754286 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 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.414786, 37.759002 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.758815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758764 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "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.410086, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409915, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409936, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.408134, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.786326 ] } } +, +{ "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.409518, 37.785071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784274 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783918 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.784071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408584, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408413, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407962, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407790, 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.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784308 ] } } +, +{ "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.784088 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408220, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407705, 37.784206 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407318, 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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786648 ] } } +, +{ "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.404593, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406245, 37.785767 ] } } +, +{ "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.405902, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 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.404529, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.781196 ] } } +, +{ "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.782731 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 37.782595 ] } } +, +{ "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.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "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.403445, 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.787717 ] } } +, +{ "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.401578, 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.402083, 37.786352 ] } } +, +{ "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.403939, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399036, 37.786216 ] } } +, +{ "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.400838, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.784953 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.784003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398778, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402555, 37.783036 ] } } +, +{ "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.403467, 37.780442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780391 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780679 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409228, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.776643 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404250, 37.777321 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 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.407136, 37.772538 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772335 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408177, 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.405012, 37.774590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774387 ] } } +, +{ "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.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402147, 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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 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.399958, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776456 ] } } +, +{ "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.401954, 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.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399443, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "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.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785631 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 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.785521 ] } } +, +{ "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.396568, 37.785326 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784198 ] } } +, +{ "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.395023, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397684, 37.782443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782646 ] } } +, +{ "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.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393478, 37.782850 ] } } +, +{ "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.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "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.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387964, 37.784605 ] } } +, +{ "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.391955, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390689, 37.780628 ] } } +, +{ "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.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "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.389830, 37.779628 ] } } +, +{ "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.396654, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396611, 37.778313 ] } } +, +{ "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.396139, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397169, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775438 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397212, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394637, 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.395141, 37.777117 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777033 ] } } +, +{ "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.394755, 37.777016 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776371 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393907, 37.776329 ] } } +, +{ "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.393950, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.776286 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776066 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772894 ] } } +, +{ "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.778729 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 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.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776193 ] } } +, +{ "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.389723, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772623 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389723, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771164 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768264 ] } } +, +{ "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.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764235 ] } } +, +{ "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.404701, 37.766042 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404443, 37.764566 ] } } +, +{ "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.404336, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770163 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403156, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403048, 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.402920, 37.767467 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403628, 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.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.766016 ] } } +, +{ "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.402683, 37.764871 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401718, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401460, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401525, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763565 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402533, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766228 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399293, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401375, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407297, 37.761648 ] } } +, +{ "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.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759087 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404186, 37.762021 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404207, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406846, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757407 ] } } +, +{ "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.409496, 37.755728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "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.406911, 37.757492 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406610, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406760, 37.755880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754303 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754421 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 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.402920, 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.402169, 37.759443 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.759596 ] } } +, +{ "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.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 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.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754455 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402469, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401696, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.754336 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757441 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757305 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398864, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755914 ] } } +, +{ "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.400581, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397019, 37.766500 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.766406 ] } } +, +{ "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.397791, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397577, 37.762615 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397362, 37.762581 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395431, 37.762708 ] } } +, +{ "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.393478, 37.762836 ] } } +, +{ "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.391043, 37.770520 ] } } +, +{ "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.766771 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389294, 37.769722 ] } } +, +{ "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.389305, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389315, 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.389358, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767195 ] } } +, +{ "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.389187, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.764244 ] } } +, +{ "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.389669, 37.762904 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388951, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762997 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762980 ] } } +, +{ "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.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.761156 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398371, 37.759875 ] } } +, +{ "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.760138 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760088 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.759994 ] } } +, +{ "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.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.760045 ] } } +, +{ "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.398049, 37.757458 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397898, 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.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754710 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396568, 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.395710, 37.756830 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757645 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 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.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760596 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760579 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390088, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390002, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758043 ] } } +, +{ "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.758018 ] } } +, +{ "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.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.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755422 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "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.414035, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 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.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 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.386934, 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": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 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.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.422092, 37.806351 ] } } +, +{ "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.420686, 37.806724 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.806690 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805707 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420472, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.805808 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420279, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808326 ] } } +, +{ "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.417414, 37.806173 ] } } +, +{ "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.417597, 37.805495 ] } } +, +{ "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.808038 ] } } +, +{ "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.414249, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410816, 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.412254, 37.807606 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412039, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806504 ] } } +, +{ "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.410601, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410387, 37.807046 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801519 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "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.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426223, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427381, 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.425418, 37.805113 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425407, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425257, 37.805164 ] } } +, +{ "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.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.805249 ] } } +, +{ "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.803384 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424914, 37.802435 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424849, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802587 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423390, 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.800485 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424248, 37.798586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798450 ] } } +, +{ "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.422296, 37.799010 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798806 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798688 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797738 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 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.429506, 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.792550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 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.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 37.790532 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427510, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427145, 37.790684 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796416 ] } } +, +{ "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.423337, 37.796085 ] } } +, +{ "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.423133, 37.794907 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794923 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.794788 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 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.421545, 37.795280 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421480, 37.795118 ] } } +, +{ "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.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 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.794050 ] } } +, +{ "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.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.793703 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794194 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.793499 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793194 ] } } +, +{ "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.791049 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 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.422296, 37.791380 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422339, 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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790650 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.790498 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789514 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420107, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 37.801918 ] } } +, +{ "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.415247, 37.805334 ] } } +, +{ "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.801019 ] } } +, +{ "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.800214 ] } } +, +{ "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.420536, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800180 ] } } +, +{ "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.799188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799128 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798349 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798315 ] } } +, +{ "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.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417554, 37.799451 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799332 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.799696 ] } } +, +{ "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.414957, 37.804384 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.803418 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803291 ] } } +, +{ "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.802604 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.802689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412661, 37.802096 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411889, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802774 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "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.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409700, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414035, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800909 ] } } +, +{ "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.412575, 37.799959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412554, 37.799976 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.800044 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412361, 37.799027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412211, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410365, 37.800502 ] } } +, +{ "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.410644, 37.800205 ] } } +, +{ "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.800417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412018, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797212 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420043, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419871, 37.795330 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.796500 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796348 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795381 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418369, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795551 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794415 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419807, 37.793414 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.794550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418047, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 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.417908, 37.792762 ] } } +, +{ "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.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "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.420547, 37.790667 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790871 ] } } +, +{ "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.789675 ] } } +, +{ "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.420536, 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.417639, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791023 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.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.415676, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 37.789158 ] } } +, +{ "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.415301, 37.789226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414850, 37.795042 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795263 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414700, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794262 ] } } +, +{ "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.411824, 37.796212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796127 ] } } +, +{ "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.411524, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411674, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411717, 37.795458 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410001, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.794635 ] } } +, +{ "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.411535, 37.794449 ] } } +, +{ "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.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "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.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414099, 37.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412618, 37.791549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789446 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "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.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410988, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410966, 37.791753 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410322, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "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.407908, 37.807351 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406288, 37.806953 ] } } +, +{ "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.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803503 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408048, 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.409507, 37.802214 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803706 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803011 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802994 ] } } +, +{ "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.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405688, 37.801773 ] } } +, +{ "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.409056, 37.799281 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799391 ] } } +, +{ "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.800688 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797196 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797857 ] } } +, +{ "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.800917 ] } } +, +{ "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.404475, 37.801095 ] } } +, +{ "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.406900, 37.798128 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406353, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796992 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797060 ] } } +, +{ "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.403778, 37.805198 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.805147 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805029 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803935 ] } } +, +{ "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.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 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.399379, 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.797399 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797552 ] } } +, +{ "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.398928, 37.800612 ] } } +, +{ "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.796865 ] } } +, +{ "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.408327, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "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.409636, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793050 ] } } +, +{ "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.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.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407597, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796127 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404314, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796076 ] } } +, +{ "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.405977, 37.794271 ] } } +, +{ "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.405967, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404422, 37.794483 ] } } +, +{ "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.404282, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792600 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792075 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791956 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.791948 ] } } +, +{ "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.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791100 ] } } +, +{ "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.408649, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406932, 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.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.792380 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "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.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795737 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794686 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793787 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792770 ] } } +, +{ "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.401557, 37.794033 ] } } +, +{ "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.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.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.793313 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400109, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398928, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791007 ] } } +, +{ "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.402126, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "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": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792295 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791074 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790345 ] } } +, +{ "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.399776, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "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.401235, 37.789260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789073 ] } } +, +{ "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.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798976 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397877, 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.798908 ] } } +, +{ "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.396160, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 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.397619, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397705, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398521, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397727, 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.396804, 37.793533 ] } } +, +{ "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.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.792990 ] } } +, +{ "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.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793194 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.793160 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396396, 37.793143 ] } } +, +{ "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.793499 ] } } +, +{ "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.795008 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.795110 ] } } +, +{ "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.393779, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793737 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 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.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394916, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794466 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794432 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394272, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393457, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.793770 ] } } +, +{ "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.393457, 37.793906 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393414, 37.793465 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393500, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393264, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793211 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791651 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791515 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.791973 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394358, 37.792397 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "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.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.395935, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.789192 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789938 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394294, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.789820 ] } } +, +{ "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.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792694 ] } } +, +{ "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.392416, 37.791346 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392566, 37.791176 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792346 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391075, 37.792160 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391869, 37.789277 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393092, 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.390206, 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.389905, 37.790566 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.790489 ] } } +, +{ "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.388543, 37.789684 ] } } +, +{ "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.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "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.420204, 37.787802 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "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.403445, 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.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742714 ] } } +, +{ "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.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.388157, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "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.748950 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386655, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 37.741408 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386419, 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.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742545 ] } } +, +{ "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.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383178, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741136 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384444, 37.741068 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384573, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384509, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386547, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386290, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385882, 37.736606 ] } } +, +{ "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.382642, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382556, 37.739813 ] } } +, +{ "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.384166, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381011, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738778 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737081 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379509, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737675 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "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.386644, 37.732584 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386612, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385989, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386054, 37.733008 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "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.383060, 37.734696 ] } } +, +{ "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.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383329, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383093, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386569, 37.729563 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385153, 37.730802 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383586, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730157 ] } } +, +{ "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.728375 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729427 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379531, 37.734026 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382127, 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.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379917, 37.732499 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379702, 37.732397 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "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.379348, 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.377235, 37.732923 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380346, 37.730581 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381376, 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.380196, 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.377020, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726118 ] } } +, +{ "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.731998 ] } } +, +{ "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.730938 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374488, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373136, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368716, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725337 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365197, 37.728596 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365454, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387964, 37.784605 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758043 ] } } +, +{ "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.758018 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755422 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "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.386934, 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.386794, 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.383060, 37.755643 ] } } +, +{ "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": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } +, +{ "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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371806, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371441, 37.816226 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366334, 37.820006 ] } } +, +{ "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.371141, 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.371023, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370862, 37.813149 ] } } +, +{ "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.811810 ] } } +, +{ "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.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363373, 37.810513 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363394, 37.810386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375261, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829828 ] } } +, +{ "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.828319 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376312, 37.825472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375647, 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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "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.371463, 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.825201 ] } } +, +{ "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.823633 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +] } +] } +] } diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json new file mode 100644 index 0000000..68c1cec --- /dev/null +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -0,0 +1,24756 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.409668,37.770713,13", +"description": "tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "13", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530303, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 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.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "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.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "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.456274, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "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.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "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.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 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.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "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.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "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.405119, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "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.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "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": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713023 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 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 West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468677, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "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.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.710409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707387 ] } } +, +{ "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.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714279 ] } } +, +{ "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.432327, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712853 ] } } +, +{ "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.434859, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710069 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708236 ] } } +, +{ "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.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712480 ] } } +, +{ "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.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.711495 ] } } +, +{ "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.404990, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "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.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397265, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829548 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482495, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480521, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792117 ] } } +, +{ "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.474899, 37.807478 ] } } +, +{ "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.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803443 ] } } +, +{ "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.443442, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.791303 ] } } +, +{ "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.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800392 ] } } +, +{ "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.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438722, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "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.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 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.433958, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509618, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508502, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "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": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "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.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775498 ] } } +, +{ "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.506313, 37.771495 ] } } +, +{ "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.503309, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771902 ] } } +, +{ "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.510304, 37.767899 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509103, 37.760367 ] } } +, +{ "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.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506185, 37.762403 ] } } +, +{ "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.508073, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +, +{ "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.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505927, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756635 ] } } +, +{ "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.760503 ] } } +, +{ "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.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492366, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "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.496357, 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.492023, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.772411 ] } } +, +{ "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.772377 ] } } +, +{ "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.485070, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780111 ] } } +, +{ "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.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776210 ] } } +, +{ "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.484255, 37.774344 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772716 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "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.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "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.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761046 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489533, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "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.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765185 ] } } +, +{ "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.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 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.481122, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "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.480006, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "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.476573, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479749, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "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.476315, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.753140 ] } } +, +{ "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.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.745438 ] } } +, +{ "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.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736139 ] } } +, +{ "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.500219, 37.742044 ] } } +, +{ "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.505369, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501378, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 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.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494941, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497344, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "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.490993, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486701, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494512, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742383 ] } } +, +{ "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.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 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.487645, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "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.484598, 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.481594, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743198 ] } } +, +{ "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.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "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.493696, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "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.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482581, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "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.472796, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.780687 ] } } +, +{ "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.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.776821 ] } } +, +{ "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.470350, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777092 ] } } +, +{ "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.467647, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.773666 ] } } +, +{ "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.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781400 ] } } +, +{ "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.455716, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.777160 ] } } +, +{ "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.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "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.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469363, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "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.464643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.763964 ] } } +, +{ "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": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759180 ] } } +, +{ "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.473612, 37.756330 ] } } +, +{ "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": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760435 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "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.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465587, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "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.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "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.463613, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "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": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784045 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781875 ] } } +, +{ "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.447991, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "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.443399, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "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.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452798, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773395 ] } } +, +{ "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.447219, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "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.443357, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 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.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.787030 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785334 ] } } +, +{ "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.437778, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437692, 37.783638 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.786013 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780959 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441554, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "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.450824, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "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.452970, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "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.447820, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.765830 ] } } +, +{ "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.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449021, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768849 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "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.767628 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "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.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761623 ] } } +, +{ "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 ] } } +, +{ "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.437906, 37.757416 ] } } +, +{ "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.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.754226 ] } } +, +{ "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.434859, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757653 ] } } +, +{ "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.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "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.466531, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "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.471337, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736410 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468505, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "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.740856 ] } } +, +{ "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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 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 & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "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.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "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.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "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.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "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.461896, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731455 ] } } +, +{ "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.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.724293 ] } } +, +{ "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.454257, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721951 ] } } +, +{ "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.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "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.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +, +{ "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.442842, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.739261 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.738209 ] } } +, +{ "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.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "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.440953, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436576, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432027, 37.751410 ] } } +, +{ "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.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +, +{ "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.434473, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737361 ] } } +, +{ "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.432842, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "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.448807, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "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.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "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.446361, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.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.452455, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722969 ] } } +, +{ "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.451682, 37.719812 ] } } +, +{ "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.450008, 37.722155 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "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.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "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.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "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.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "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.722834 ] } } +, +{ "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.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "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": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733424 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "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.725923 ] } } +, +{ "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.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "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.438550, 37.723580 ] } } +, +{ "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.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724327 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "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.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.422113, 37.806359 ] } } +, +{ "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.420654, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.806190 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.808055 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.808123 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.797814 ] } } +, +{ "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.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "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.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798493 ] } } +, +{ "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.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790693 ] } } +, +{ "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.423358, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.794796 ] } } +, +{ "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.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 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": "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.422328, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.798323 ] } } +, +{ "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.415891, 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.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795169 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796526 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +, +{ "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.417479, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "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.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "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.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794661 ] } } +, +{ "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.411385, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "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.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808258 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "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.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } +, +{ "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.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793745 ] } } +, +{ "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.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "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.404304, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794491 ] } } +, +{ "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": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "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.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788726 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "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.401257, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "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.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799103 ] } } +, +{ "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.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793168 ] } } +, +{ "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.394476, 37.795034 ] } } +, +{ "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.395720, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.794084 ] } } +, +{ "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.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790625 ] } } +, +{ "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.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.793813 ] } } +, +{ "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.391171, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390227, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823650 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371173, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364907, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811717 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784927 ] } } +, +{ "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 & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431598, 37.775871 ] } } +, +{ "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.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.777397 ] } } +, +{ "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": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772173 ] } } +, +{ "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.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.786928 ] } } +, +{ "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.420654, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783503 ] } } +, +{ "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.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "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.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "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.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778211 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "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.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "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.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429967, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767696 ] } } +, +{ "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.429152, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 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.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.764608 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "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.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "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.421556, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768645 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "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.417092, 37.761894 ] } } +, +{ "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.418981, 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.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "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.408166, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786352 ] } } +, +{ "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.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.784011 ] } } +, +{ "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.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.783503 ] } } +, +{ "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.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny 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": "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.401643, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +, +{ "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.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774412 ] } } +, +{ "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.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 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.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "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.394776, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772920 ] } } +, +{ "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.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775498 ] } } +, +{ "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.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "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.407565, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763319 ] } } +, +{ "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": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "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.403445, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "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.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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.404218, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "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.402029, 37.759621 ] } } +, +{ "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.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.766780 ] } } +, +{ "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.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762878 ] } } +, +{ "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.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761182 ] } } +, +{ "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.396364, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "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.394004, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429795, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749408 ] } } +, +{ "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.431340, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744963 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "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.429023, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738922 ] } } +, +{ "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.424345, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "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": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "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": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.746761 ] } } +, +{ "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.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 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.412028, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430310, 37.735494 ] } } +, +{ "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.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 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.424431, 37.735935 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "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.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "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.413015, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "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.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739702 ] } } +, +{ "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.406793, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397094, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752360 ] } } +, +{ "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.393875, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.737123 ] } } +, +{ "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.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "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.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391686, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 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.737666 ] } } +, +{ "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.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.732202 ] } } +, +{ "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.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399497, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726567 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723411 ] } } +, +{ "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.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726398 ] } } +, +{ "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.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391601, 37.732304 ] } } +, +{ "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.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } +, +{ "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.392974, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386451, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384477, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "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.382588, 37.739838 ] } } +, +{ "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.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736546 ] } } +, +{ "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.387395, 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.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "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": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.726058 ] } } +, +{ "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.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374520, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "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.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "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.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523458, 37.831667 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530282, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523243, 37.831429 ] } } +, +{ "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.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 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.483225, 37.718624 ] } } +, +{ "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.479920, 37.719609 ] } } +, +{ "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.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475393, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 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.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451789, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451661, 37.719795 ] } } +, +{ "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.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "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.480114, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480242, 37.714500 ] } } +, +{ "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.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709135 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717453 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716027 ] } } +, +{ "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.715229 ] } } +, +{ "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.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717385 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713006 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "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.469642, 37.714330 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714296 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712497 ] } } +, +{ "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.469471, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469342, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467239, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "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.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.705774 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707064 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714364 ] } } +, +{ "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.462604, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462347, 37.713193 ] } } +, +{ "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.462261, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459171, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461574, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460287, 37.710137 ] } } +, +{ "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.456081, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 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.716435 ] } } +, +{ "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.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "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.456124, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454793, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705995 ] } } +, +{ "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.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.706623 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707370 ] } } +, +{ "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.448657, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448614, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450373, 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.453163, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448356, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 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.442670, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.453334, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.441189, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.716418 ] } } +, +{ "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.439623, 37.715688 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715722 ] } } +, +{ "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.437606, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712463 ] } } +, +{ "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.711682 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437971, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714262 ] } } +, +{ "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.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 & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436640, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.709984 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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 & 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.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.710578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 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.447047, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509596, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509425, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510326, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509854, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779755 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "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.500691, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 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.503846, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.775498 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773547 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505691, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503545, 37.771749 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.771783 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500412, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 37.775515 ] } } +, +{ "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.771885 ] } } +, +{ "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.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 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.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509081, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760181 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506120, 37.764049 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506163, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505991, 37.762216 ] } } +, +{ "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.508137, 37.760283 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508051, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508008, 37.760283 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760520 ] } } +, +{ "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.505820, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506077, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505863, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505906, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502859, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.760656 ] } } +, +{ "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.499382, 37.760775 ] } } +, +{ "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.499168, 37.760690 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.779449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496421, 37.779687 ] } } +, +{ "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.494404, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492344, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.781552 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.779755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493417, 37.779585 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491443, 37.781671 ] } } +, +{ "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.783587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490628, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489984, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489297, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486894, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488053, 37.779873 ] } } +, +{ "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.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "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.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492988, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772089 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776125 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489641, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489426, 37.772411 ] } } +, +{ "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.487280, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.783825 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485049, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783961 ] } } +, +{ "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.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "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.484984, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.780230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481787, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780094 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "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.479856, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782231 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780467 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.778296 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776193 ] } } +, +{ "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": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482431, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774565 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484534, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772699 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772360 ] } } +, +{ "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.481358, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480285, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477925, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480628, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772869 ] } } +, +{ "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.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764761 ] } } +, +{ "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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764897 ] } } +, +{ "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.495863, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760927 ] } } +, +{ "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.495713, 37.759146 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761029 ] } } +, +{ "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.495606, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495477, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "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.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489512, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "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.486765, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753497 ] } } +, +{ "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.489469, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487323, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765439 ] } } +, +{ "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.480285, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477753, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477624, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765168 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477324, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763438 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 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.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.761589 ] } } +, +{ "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.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483032, 37.753887 ] } } +, +{ "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.761504 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480114, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759604 ] } } +, +{ "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.477195, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.760164 ] } } +, +{ "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.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476552, 37.757874 ] } } +, +{ "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.479727, 37.755906 ] } } +, +{ "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.480886, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754345 ] } } +, +{ "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.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.754124 ] } } +, +{ "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.506378, 37.752784 ] } } +, +{ "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 ] } } +, +{ "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.505498, 37.752852 ] } } +, +{ "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.504468, 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.503588, 37.753140 ] } } +, +{ "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.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507021, 37.747355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745455 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506721, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501013, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498868, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753225 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747423 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501957, 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.499533, 37.747694 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738090 ] } } +, +{ "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.504275, 37.737989 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742129 ] } } +, +{ "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.735579 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735545 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735613 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501357, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734578 ] } } +, +{ "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.501700, 37.730675 ] } } +, +{ "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.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731608 ] } } +, +{ "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.726771 ] } } +, +{ "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.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495434, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495134, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 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.494876, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747592 ] } } +, +{ "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.497323, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493117, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490971, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491229, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488825, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486937, 37.748135 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486680, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744233 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494490, 37.743995 ] } } +, +{ "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.494662, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494361, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742366 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.740127 ] } } +, +{ "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.494297, 37.738633 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494104, 37.738396 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493932, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742502 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489769, 37.742366 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487581, 37.744284 ] } } +, +{ "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.487345, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487624, 37.742468 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487409, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487237, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484791, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748390 ] } } +, +{ "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.481315, 37.748475 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "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.475908, 37.748543 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485478, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733916 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496850, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496593, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733373 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493932, 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.493632, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730352 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734153 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486250, 37.734391 ] } } +, +{ "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.483976, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486422, 37.729639 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.734663 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479641, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734764 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728010 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730013 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726075 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724242 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726992 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482560, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "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.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720746 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478826, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 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": "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.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475522, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.784605 ] } } +, +{ "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.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.780535 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780586 ] } } +, +{ "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.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469170, 37.784673 ] } } +, +{ "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 St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466724, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.783147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 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.472432, 37.776804 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776905 ] } } +, +{ "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.470543, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472003, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470543, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468183, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777211 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775277 ] } } +, +{ "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.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467625, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464492, 37.784690 ] } } +, +{ "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.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462304, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.783028 ] } } +, +{ "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": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456853, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785673 ] } } +, +{ "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.458870, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455223, 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.784130 ] } } +, +{ "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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.783079 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "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.455695, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.779008 ] } } +, +{ "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.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463934, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773547 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773853 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455051, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774802 ] } } +, +{ "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.454536, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453892, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.770867 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765473 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "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.470350, 37.762081 ] } } +, +{ "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.466166, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765914 ] } } +, +{ "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.469342, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "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.466252, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464621, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764116 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764116 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.763947 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 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.762149 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762115 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "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.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756313 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755261 ] } } +, +{ "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.472174, 37.754124 ] } } +, +{ "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.758315 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758213 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760418 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758552 ] } } +, +{ "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.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756686 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756517 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465565, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462475, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "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.464364, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462862, 37.762403 ] } } +, +{ "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.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460158, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460759, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "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.457969, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.764456 ] } } +, +{ "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.766050 ] } } +, +{ "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.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456982, 37.763811 ] } } +, +{ "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.454922, 37.766220 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454321, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.758620 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463892, 37.758484 ] } } +, +{ "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.461917, 37.757738 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463591, 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.463806, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756924 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459986, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 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": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451961, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450287, 37.784385 ] } } +, +{ "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.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781858 ] } } +, +{ "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.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785249 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.784537 ] } } +, +{ "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.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.782519 ] } } +, +{ "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.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.782333 ] } } +, +{ "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.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778025 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778364 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 37.778245 ] } } +, +{ "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.449300, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452862, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452776, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.773615 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449472, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 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.446918, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777584 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775684 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 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.446296, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445266, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447326, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.773954 ] } } +, +{ "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.445738, 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.774209 ] } } +, +{ "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.442648, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440331, 37.787013 ] } } +, +{ "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.439945, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 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.438099, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439387, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783180 ] } } +, +{ "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.781620 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438829, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.780738 ] } } +, +{ "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.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788064 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "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.786165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780942 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.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.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779178 ] } } +, +{ "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.441533, 37.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777652 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.775074 ] } } +, +{ "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.441275, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "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.774735 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771308 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778161 ] } } +, +{ "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.436469, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 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.434194, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771241 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771783 ] } } +, +{ "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.452862, 37.769341 ] } } +, +{ "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.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766423 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769612 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769443 ] } } +, +{ "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.450631, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448485, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452948, 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.452605, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452691, 37.765338 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.764608 ] } } +, +{ "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.449923, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449815, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765575 ] } } +, +{ "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.449858, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769951 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.770325 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770359 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770223 ] } } +, +{ "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.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447798, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.763031 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 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.443721, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763743 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763743 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449000, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760927 ] } } +, +{ "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.446640, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 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.445953, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 37.758671 ] } } +, +{ "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.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.761216 ] } } +, +{ "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.445095, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759808 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "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.443442, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755499 ] } } +, +{ "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.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767746 ] } } +, +{ "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.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766508 ] } } +, +{ "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.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765372 ] } } +, +{ "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.437499, 37.762420 ] } } +, +{ "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": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769409 ] } } +, +{ "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.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764286 ] } } +, +{ "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.435267, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435310, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762624 ] } } +, +{ "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.435396, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762556 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441103, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "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.438056, 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.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757568 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.757416 ] } } +, +{ "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.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753531 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.754379 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760961 ] } } +, +{ "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.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.759400 ] } } +, +{ "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.757789 ] } } +, +{ "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.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756109 ] } } +, +{ "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.434494, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474105, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473848, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.748729 ] } } +, +{ "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.473719, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470758, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749052 ] } } +, +{ "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.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.752954 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750867 ] } } +, +{ "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.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743215 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741213 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 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.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470200, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739210 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736495 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736393 ] } } +, +{ "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.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468483, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741111 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466123, 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 Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465866, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740941 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740771 ] } } +, +{ "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.465780, 37.740805 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 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.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739855 ] } } +, +{ "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.466788, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461360, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 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.455866, 37.753090 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454407, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458827, 37.747915 ] } } +, +{ "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.459042, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.746031 ] } } +, +{ "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.457111, 37.745387 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457197, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455609, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455566, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453849, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "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.740093 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739210 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744165 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.744012 ] } } +, +{ "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.455781, 37.743486 ] } } +, +{ "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.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742876 ] } } +, +{ "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.453957, 37.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.735053 ] } } +, +{ "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.734629 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 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.734323 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.731201 ] } } +, +{ "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.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469599, 37.734866 ] } } +, +{ "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.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.734866 ] } } +, +{ "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.465522, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "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.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728400 ] } } +, +{ "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.467582, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "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.721119 ] } } +, +{ "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.475114, 37.721255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721085 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720950 ] } } +, +{ "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.721595 ] } } +, +{ "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.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475393, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.721493 ] } } +, +{ "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.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727229 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "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.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 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.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.729979 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733610 ] } } +, +{ "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.458527, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457669, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "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.457669, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724921 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719999 ] } } +, +{ "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.461338, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458098, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458355, 37.724276 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.724276 ] } } +, +{ "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.456253, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454236, 37.723462 ] } } +, +{ "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.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.459085, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "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.456253, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721764 ] } } +, +{ "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.456253, 37.719965 ] } } +, +{ "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.719897 ] } } +, +{ "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.719999 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751291 ] } } +, +{ "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.452047, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "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.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451918, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.745013 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749968 ] } } +, +{ "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.447927, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747932 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746846 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747050 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747151 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746710 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451403, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 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.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "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.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450373, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738192 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.741399 ] } } +, +{ "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.448013, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736801 ] } } +, +{ "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": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442477, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750765 ] } } +, +{ "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.749086 ] } } +, +{ "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.440524, 37.750986 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.749323 ] } } +, +{ "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.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436554, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "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.751088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752784 ] } } +, +{ "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.434065, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434194, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 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": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436082, 37.747864 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.747083 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.746303 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746269 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "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.738294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 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": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 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.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.740195 ] } } +, +{ "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.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734357 ] } } +, +{ "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.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731421 ] } } +, +{ "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.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452304, 37.727637 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "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.449172, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "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.448785, 37.729809 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.731642 ] } } +, +{ "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.444623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "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.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723054 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "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.451789, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451661, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720644 ] } } +, +{ "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.450287, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.722138 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.721051 ] } } +, +{ "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.447240, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.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.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 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.446768, 37.720712 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720712 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720440 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.720474 ] } } +, +{ "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.447155, 37.719863 ] } } +, +{ "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.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720644 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720576 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720576 ] } } +, +{ "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": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 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.444794, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 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.445266, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729011 ] } } +, +{ "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.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731404 ] } } +, +{ "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.435718, 37.733933 ] } } +, +{ "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.433851, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.733339 ] } } +, +{ "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.434108, 37.733407 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729605 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725906 ] } } +, +{ "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.442391, 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.441211, 37.727161 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "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.438550, 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.437499, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.723835 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724310 ] } } +, +{ "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.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.726177 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.722392 ] } } +, +{ "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.432971, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.721646 ] } } +, +{ "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.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.772021 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761233 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746540 ] } } +, +{ "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.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "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.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "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.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "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.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717453 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717385 ] } } +, +{ "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.456081, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.717742 ] } } +, +{ "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.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448614, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.430139, 37.718183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 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.508738, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502429, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 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.483847, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833158 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832853 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829531 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803969 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480500, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792100 ] } } +, +{ "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.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806580 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 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.467089, 37.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466938, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460372, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798442 ] } } +, +{ "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.458012, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 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.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.803867 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454364, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802307 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.797967 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798272 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455008, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453420, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799052 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799391 ] } } +, +{ "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.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798069 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "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.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804562 ] } } +, +{ "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.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803664 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800985 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.800052 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451532, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445524, 37.795763 ] } } +, +{ "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.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447412, 37.790727 ] } } +, +{ "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.447047, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441103, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439687, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.799306 ] } } +, +{ "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.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796882 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796882 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802833 ] } } +, +{ "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.802409 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804884 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805139 ] } } +, +{ "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.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800917 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.800748 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434709, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437069, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "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.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432606, 37.797526 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442005, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438700, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.791575 ] } } +, +{ "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.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795865 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 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.436297, 37.794067 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "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.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791727 ] } } +, +{ "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.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786911 ] } } +, +{ "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.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440331, 37.787013 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788064 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801528 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.428980, 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.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718947 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "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.425783, 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.718913 ] } } +, +{ "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.411277, 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.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 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.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 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.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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 & 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.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 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.428358, 37.717487 ] } } +, +{ "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.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711750 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711885 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718302 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710731 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710052 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.713719 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 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.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.709000 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712429 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.712242 ] } } +, +{ "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.415504, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415912, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718132 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715043 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.711682 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.710986 ] } } +, +{ "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.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710595 ] } } +, +{ "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.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709882 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.708219 ] } } +, +{ "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.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707913 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707709 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412951, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "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.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716672 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.716604 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "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": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715348 ] } } +, +{ "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.409067, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.713345 ] } } +, +{ "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.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710018 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709916 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "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.404969, 37.713226 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716367 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.713855 ] } } +, +{ "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.402008, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402437, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 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.400935, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712021 ] } } +, +{ "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.398961, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709865 ] } } +, +{ "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.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "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.405055, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "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.404861, 37.709101 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397244, 37.711223 ] } } +, +{ "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.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.711257 ] } } +, +{ "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.389219, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714398 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.786165 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.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.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 37.778551 ] } } +, +{ "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.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "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.767526 ] } } +, +{ "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.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "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": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 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.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729605 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.721646 ] } } +, +{ "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.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 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.408659, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.408316, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789082 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 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.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 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.785046 ] } } +, +{ "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.428958, 37.781926 ] } } +, +{ "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.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786131 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786589 ] } } +, +{ "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.422907, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "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.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784673 ] } } +, +{ "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.421148, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783214 ] } } +, +{ "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.421083, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.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.426727, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426341, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.772021 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425225, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423036, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773819 ] } } +, +{ "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.773836 ] } } +, +{ "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.770969 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420976, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.771783 ] } } +, +{ "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.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "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.420654, 37.785860 ] } } +, +{ "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.419174, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782875 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783197 ] } } +, +{ "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.419281, 37.782197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779704 ] } } +, +{ "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.418702, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.783282 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.782638 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785555 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414281, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413166, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.409775, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781078 ] } } +, +{ "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.412457, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "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.409904, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410247, 37.782333 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781179 ] } } +, +{ "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.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778703 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778194 ] } } +, +{ "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.778398 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "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.419388, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "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.418659, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777720 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775956 ] } } +, +{ "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.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775040 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774938 ] } } +, +{ "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.418616, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.773005 ] } } +, +{ "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.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774582 ] } } +, +{ "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.774226 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415397, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415011, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776227 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771749 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 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.412651, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767780 ] } } +, +{ "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.429001, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767204 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767780 ] } } +, +{ "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.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428529, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.764744 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.770155 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.768391 ] } } +, +{ "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.766797 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421792, 37.763099 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 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.427928, 37.758281 ] } } +, +{ "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.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757467 ] } } +, +{ "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.426941, 37.756652 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.754616 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761402 ] } } +, +{ "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.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.761436 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759875 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758756 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757161 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755566 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 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.419946, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768221 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766695 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "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.419689, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765270 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 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.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763845 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.769680 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.769680 ] } } +, +{ "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.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "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.419109, 37.758179 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761877 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.756601 ] } } +, +{ "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.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758824 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.759333 ] } } +, +{ "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.414496, 37.755465 ] } } +, +{ "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.408402, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786335 ] } } +, +{ "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.409518, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783927 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408230, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786403 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786606 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.785775 ] } } +, +{ "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.405913, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.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.408316, 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.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782740 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.782604 ] } } +, +{ "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.404754, 37.781451 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "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.787725 ] } } +, +{ "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.401578, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403939, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399046, 37.786216 ] } } +, +{ "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.400849, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398789, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.783045 ] } } +, +{ "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.403467, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780399 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773547 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.774599 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774395 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405913, 37.771563 ] } } +, +{ "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.402158, 37.778924 ] } } +, +{ "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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401965, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771715 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "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.398124, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785758 ] } } +, +{ "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.396600, 37.785521 ] } } +, +{ "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.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784198 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779483 ] } } +, +{ "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.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "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.388146, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784605 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391965, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780637 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389562, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775447 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777279 ] } } +, +{ "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.395141, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777041 ] } } +, +{ "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.394884, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776295 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772903 ] } } +, +{ "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.393038, 37.778737 ] } } +, +{ "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.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.776193 ] } } +, +{ "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.389734, 37.773005 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389734, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771173 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766355 ] } } +, +{ "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.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765711 ] } } +, +{ "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.407544, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405527, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404454, 37.764574 ] } } +, +{ "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.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403166, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767475 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.764829 ] } } +, +{ "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.764829 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764829 ] } } +, +{ "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.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.766016 ] } } +, +{ "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.402694, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401536, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763574 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399304, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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 & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406857, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "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.406921, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754311 ] } } +, +{ "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.404068, 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.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759570 ] } } +, +{ "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.402179, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759604 ] } } +, +{ "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 & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.758111 ] } } +, +{ "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.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753395 ] } } +, +{ "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.399991, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "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.400591, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.766508 ] } } +, +{ "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.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397587, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.762590 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.762708 ] } } +, +{ "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.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770528 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769731 ] } } +, +{ "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.389305, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 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.389369, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766593 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766593 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389004, 37.767204 ] } } +, +{ "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.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "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.388875, 37.764252 ] } } +, +{ "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.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388961, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763370 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762997 ] } } +, +{ "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.388833, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761165 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759875 ] } } +, +{ "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.396472, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.760147 ] } } +, +{ "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.396450, 37.759994 ] } } +, +{ "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.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760045 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395141, 37.758383 ] } } +, +{ "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.398059, 37.757467 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753565 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754718 ] } } +, +{ "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": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393982, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758043 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758043 ] } } +, +{ "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.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758179 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.758026 ] } } +, +{ "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.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755024 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755702 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755431 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755329 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429774, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 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.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749187 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746540 ] } } +, +{ "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.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "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.426512, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.742231 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "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.428958, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427585, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.743826 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422178, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 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.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739821 ] } } +, +{ "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.424173, 37.739753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739007 ] } } +, +{ "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.424216, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752072 ] } } +, +{ "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.418530, 37.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750680 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.752326 ] } } +, +{ "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.416170, 37.752462 ] } } +, +{ "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.749018 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416084, 37.749119 ] } } +, +{ "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.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.748068 ] } } +, +{ "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.418187, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 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.419603, 37.745930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 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.414045, 37.752767 ] } } +, +{ "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.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413895, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748356 ] } } +, +{ "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.413595, 37.748390 ] } } +, +{ "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.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.746880 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.748407 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +, +{ "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.409775, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744301 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 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.418466, 37.739312 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.739041 ] } } +, +{ "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.413166, 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.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.741247 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "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.413681, 37.739007 ] } } +, +{ "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.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737174 ] } } +, +{ "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.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739584 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "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.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429345, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428014, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429731, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "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.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728621 ] } } +, +{ "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.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424710, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735918 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728723 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.724005 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429473, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "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.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721561 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427628, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720916 ] } } +, +{ "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.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718947 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725091 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423251, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 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.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720406 ] } } +, +{ "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.425783, 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": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417028, 37.735647 ] } } +, +{ "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.415698, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 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.415268, 37.733271 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416127, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "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.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 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.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.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.729945 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414410, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726415 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718913 ] } } +, +{ "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.414153, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.726483 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722952 ] } } +, +{ "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.723122 ] } } +, +{ "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.412393, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.753073 ] } } +, +{ "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.409089, 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.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408745, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 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.402244, 37.751902 ] } } +, +{ "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.402136, 37.750850 ] } } +, +{ "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.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400162, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747134 ] } } +, +{ "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.742876 ] } } +, +{ "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.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 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.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.739550 ] } } +, +{ "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.406771, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737955 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.741077 ] } } +, +{ "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.398832, 37.743911 ] } } +, +{ "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.400463, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739142 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739567 ] } } +, +{ "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.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752173 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751291 ] } } +, +{ "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.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396901, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752513 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747355 ] } } +, +{ "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.393939, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 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.392781, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.737174 ] } } +, +{ "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.394691, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394111, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 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.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740704 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 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.742638 ] } } +, +{ "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.388167, 37.742451 ] } } +, +{ "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.391429, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391279, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738090 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391665, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388918, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "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.389820, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.737955 ] } } +, +{ "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.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "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.404819, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733067 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.727331 ] } } +, +{ "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.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "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.401085, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399476, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.731913 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 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.403681, 37.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727535 ] } } +, +{ "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.403252, 37.727755 ] } } +, +{ "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.401450, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730386 ] } } +, +{ "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.401021, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400892, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.726550 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726686 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.723631 ] } } +, +{ "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.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "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.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726381 ] } } +, +{ "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.401879, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723563 ] } } +, +{ "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.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401407, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721493 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.395935, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735036 ] } } +, +{ "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.392673, 37.735036 ] } } +, +{ "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.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392094, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 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.734035 ] } } +, +{ "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.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391579, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732287 ] } } +, +{ "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.391365, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 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.390184, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389047, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732932 ] } } +, +{ "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.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392867, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729232 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729300 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728095 ] } } +, +{ "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.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724174 ] } } +, +{ "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.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.398446, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "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.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722647 ] } } +, +{ "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.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.722036 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721425 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 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.391472, 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.389605, 37.719931 ] } } +, +{ "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.386901, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755397 ] } } +, +{ "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.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387674, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752818 ] } } +, +{ "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.387588, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387459, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748950 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745862 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746065 ] } } +, +{ "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.387159, 37.741416 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386429, 37.741959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741145 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384455, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "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.382653, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382567, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382824, 37.739719 ] } } +, +{ "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.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381022, 37.738633 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737683 ] } } +, +{ "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.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387373, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387331, 37.731862 ] } } +, +{ "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.386644, 37.732592 ] } } +, +{ "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.386000, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "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.383554, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734696 ] } } +, +{ "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.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383339, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729571 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383597, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382696, 37.730165 ] } } +, +{ "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.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729436 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734187 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382138, 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.380035, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377245, 37.732932 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730590 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728689 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380207, 37.727993 ] } } +, +{ "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.377031, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726126 ] } } +, +{ "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.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374499, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 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.428358, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718302 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "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.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805139 ] } } +, +{ "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.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432606, 37.797526 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.806173 ] } } +, +{ "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.417607, 37.805495 ] } } +, +{ "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.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808038 ] } } +, +{ "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.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "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.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806512 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801528 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801833 ] } } +, +{ "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.426233, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800951 ] } } +, +{ "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.427392, 37.798069 ] } } +, +{ "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.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804851 ] } } +, +{ "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.425010, 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.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423508, 37.805257 ] } } +, +{ "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.423809, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.802443 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "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.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423251, 37.803664 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 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.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "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.422307, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798815 ] } } +, +{ "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.422435, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.429516, 37.793152 ] } } +, +{ "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.426212, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427156, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "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.424624, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.796085 ] } } +, +{ "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.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 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.421556, 37.795288 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.795118 ] } } +, +{ "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.423379, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793830 ] } } +, +{ "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.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794203 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.791049 ] } } +, +{ "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.791151 ] } } +, +{ "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.422307, 37.791388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422349, 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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420847, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420847, 37.790506 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789523 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "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.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 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.801019 ] } } +, +{ "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.419345, 37.800222 ] } } +, +{ "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.420547, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.800188 ] } } +, +{ "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.419152, 37.799188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.797407 ] } } +, +{ "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.417564, 37.799459 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799696 ] } } +, +{ "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.414968, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415011, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803291 ] } } +, +{ "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.413659, 37.802613 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802104 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.802782 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.801188 ] } } +, +{ "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.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800917 ] } } +, +{ "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.412586, 37.799968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412221, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.800510 ] } } +, +{ "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.410655, 37.800205 ] } } +, +{ "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.409947, 37.800426 ] } } +, +{ "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.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796509 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795390 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795559 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418058, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792880 ] } } +, +{ "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.416298, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793830 ] } } +, +{ "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.416041, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "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.420547, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790879 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795051 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794271 ] } } +, +{ "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.411835, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796390 ] } } +, +{ "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.411535, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795458 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794644 ] } } +, +{ "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.411535, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794542 ] } } +, +{ "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.411878, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792405 ] } } +, +{ "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.414110, 37.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.806105 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807360 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.806953 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406042, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.803291 ] } } +, +{ "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.408059, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803020 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 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.406471, 37.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.801782 ] } } +, +{ "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.409282, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799391 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.797204 ] } } +, +{ "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.797865 ] } } +, +{ "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.405977, 37.800917 ] } } +, +{ "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.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797340 ] } } +, +{ "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.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.805156 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803935 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402952, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802172 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "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.399390, 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.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403595, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797560 ] } } +, +{ "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.398939, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798543 ] } } +, +{ "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.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408273, 37.796255 ] } } +, +{ "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.409647, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.793050 ] } } +, +{ "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.409260, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 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.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.794712 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "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.404282, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792032 ] } } +, +{ "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.409089, 37.792134 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792134 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.791100 ] } } +, +{ "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.407544, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790167 ] } } +, +{ "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.408659, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.408316, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406943, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789828 ] } } +, +{ "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.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792778 ] } } +, +{ "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.401557, 37.794033 ] } } +, +{ "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.401321, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.793321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400119, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791015 ] } } +, +{ "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.402136, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792032 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "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.399776, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789082 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798984 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.799561 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798917 ] } } +, +{ "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.396171, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797085 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795424 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397544, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.793542 ] } } +, +{ "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.396643, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793152 ] } } +, +{ "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.396128, 37.793508 ] } } +, +{ "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.395184, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795017 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795118 ] } } +, +{ "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.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET 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": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.794067 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "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.393467, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393425, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793219 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791659 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.789930 ] } } +, +{ "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.396343, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395484, 37.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.792405 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "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.393339, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "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.394261, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789726 ] } } +, +{ "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.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.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 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.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392566, 37.791185 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792168 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390206, 37.790812 ] } } +, +{ "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.389905, 37.790574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388790, 37.789455 ] } } +, +{ "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.388554, 37.789692 ] } } +, +{ "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.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377417, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 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.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375658, 37.824480 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824175 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823260 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "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.823531 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 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": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370079, 37.825209 ] } } +, +{ "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.823633 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825328 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818514 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366345, 37.820006 ] } } +, +{ "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.371151, 37.813073 ] } } +, +{ "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.371023, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813157 ] } } +, +{ "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.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822243 ] } } +, +{ "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.364843, 37.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363384, 37.810513 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "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.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.408402, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "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.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "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.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.786742 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.527256, 37.832590 ] } } +, +{ "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.523458, 37.831667 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829065 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825040 ] } } +, +{ "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.830379 ] } } +, +{ "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.831345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.483225, 37.718616 ] } } +, +{ "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.475640, 37.719108 ] } } +, +{ "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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485124, 37.714780 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716341 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711537 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480232, 37.714491 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477442, 37.717496 ] } } +, +{ "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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715849 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715985 ] } } +, +{ "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.709135 ] } } +, +{ "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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 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.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752844 ] } } +, +{ "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.504457, 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.503577, 37.753132 ] } } +, +{ "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.507011, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745446 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506710, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747465 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747431 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.747296 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745599 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745429 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.501947, 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.747686 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497634, 37.747635 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504843, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504672, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504715, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504500, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504543, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504586, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738150 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504414, 37.739830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505316, 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.504275, 37.737980 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736130 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502612, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502354, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500209, 37.742027 ] } } +, +{ "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.498063, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735570 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735536 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735401 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735604 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "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.734136 ] } } +, +{ "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.499222, 37.731608 ] } } +, +{ "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.726763 ] } } +, +{ "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.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.495134, 37.753302 ] } } +, +{ "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.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 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.494876, 37.749569 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747584 ] } } +, +{ "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.495370, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747771 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493106, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747838 ] } } +, +{ "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.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490960, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491218, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748008 ] } } +, +{ "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.487935, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486926, 37.748127 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486669, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487677, 37.746167 ] } } +, +{ "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.743987 ] } } +, +{ "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.494651, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494222, 37.742273 ] } } +, +{ "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.492967, 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.494394, 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.494286, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494093, 37.738387 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494158, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493922, 37.736546 ] } } +, +{ "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.489759, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487656, 37.744513 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487570, 37.744275 ] } } +, +{ "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.487345, 37.742596 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487624, 37.742468 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487398, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487227, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487141, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 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.484781, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484587, 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.748466 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748364 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 37.748551 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479438, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.475908, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742545 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 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.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "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.496829, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496850, 37.733602 ] } } +, +{ "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.496647, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493793, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733738 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493685, 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.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493664, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734145 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 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.489265, 37.734247 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483965, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "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.486411, 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.480071, 37.734654 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479631, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734756 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728002 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478493, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730428 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726067 ] } } +, +{ "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.484899, 37.724234 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726983 ] } } +, +{ "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.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483064, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482549, 37.721841 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483085, 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.483225, 37.718616 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.720737 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725956 ] } } +, +{ "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.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "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.480907, 37.720687 ] } } +, +{ "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.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.719609 ] } } +, +{ "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.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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 & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475296, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721179 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509950, 37.779916 ] } } +, +{ "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.779780 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512053, 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.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510251, 37.775014 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 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.773658 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509886, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "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.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507397, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504114, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779746 ] } } +, +{ "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.504243, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779560 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784987 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781095 ] } } +, +{ "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.779051 ] } } +, +{ "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.503846, 37.775354 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503620, 37.775489 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773539 ] } } +, +{ "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.771486 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505680, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503545, 37.771741 ] } } +, +{ "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.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.779153 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775642 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 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.500348, 37.771885 ] } } +, +{ "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.499919, 37.771792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510294, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510465, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510058, 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.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509081, 37.760342 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "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.764193 ] } } +, +{ "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.506120, 37.764040 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506152, 37.762378 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505981, 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.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508041, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508008, 37.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506024, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760495 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760495 ] } } +, +{ "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.506056, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505852, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505895, 37.758663 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505723, 37.758493 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754930 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754761 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502590, 37.760647 ] } } +, +{ "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.499372, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760749 ] } } +, +{ "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.499146, 37.760647 ] } } +, +{ "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.496411, 37.779678 ] } } +, +{ "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.494404, 37.781646 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492344, 37.782002 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781747 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781510 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493364, 37.781544 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779695 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779746 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493407, 37.779577 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493385, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 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.490520, 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.490617, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489973, 37.779967 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783664 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489297, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "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.488053, 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.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493256, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493085, 37.777694 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494587, 37.775905 ] } } +, +{ "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.496797, 37.771927 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496346, 37.772080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771978 ] } } +, +{ "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.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777745 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776032 ] } } +, +{ "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.489920, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489630, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489415, 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.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487270, 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.485145, 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.485296, 37.783816 ] } } +, +{ "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.784011 ] } } +, +{ "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.484856, 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.481669, 37.784105 ] } } +, +{ "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.484984, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484716, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.780255 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779984 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779933 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481787, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482699, 37.780085 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478451, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780459 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 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.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484695, 37.778288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484566, 37.776422 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484373, 37.776193 ] } } +, +{ "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.776337 ] } } +, +{ "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.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772606 ] } } +, +{ "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.484083, 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.481347, 37.772767 ] } } +, +{ "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.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477914, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480618, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 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.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 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.495381, 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.494715, 37.764761 ] } } +, +{ "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.764736 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764888 ] } } +, +{ "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.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760834 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.760783 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.760919 ] } } +, +{ "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.759138 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 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.495595, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757034 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495466, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495273, 37.755168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489737, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 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.486765, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765227 ] } } +, +{ "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.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763141 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480382, 37.765194 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 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.480274, 37.763684 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477614, 37.765533 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.765550 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 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.763438 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483557, 37.761343 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.761580 ] } } +, +{ "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.481240, 37.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754048 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "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.761496 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480114, 37.761462 ] } } +, +{ "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.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477120, 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.476830, 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.760155 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759952 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476541, 37.757865 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756016 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755906 ] } } +, +{ "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.480886, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756228 ] } } +, +{ "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.754124 ] } } +, +{ "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.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752844 ] } } +, +{ "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.504457, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503577, 37.753132 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.495134, 37.753302 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "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.773055 ] } } +, +{ "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.765465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792227 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482270, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 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.807470 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485145, 37.787539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 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.508727, 37.832963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502419, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494029, 37.833887 ] } } +, +{ "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.494018, 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.483836, 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.483557, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.832844 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484030, 37.829523 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "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.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474438, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717445 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718056 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472979, 37.717326 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474588, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716019 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715221 ] } } +, +{ "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.473097, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717377 ] } } +, +{ "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.716206 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470254, 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.474481, 37.713591 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713006 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710714 ] } } +, +{ "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.470039, 37.714415 ] } } +, +{ "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.469642, 37.714321 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714287 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466992, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469267, 37.712488 ] } } +, +{ "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.469460, 37.710366 ] } } +, +{ "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.467228, 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.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466906, 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.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.705766 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707056 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714355 ] } } +, +{ "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.462593, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713184 ] } } +, +{ "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.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713159 ] } } +, +{ "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.459139, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460276, 37.710137 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "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.716435 ] } } +, +{ "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.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715866 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714848 ] } } +, +{ "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.711495 ] } } +, +{ "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.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713286 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713167 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711707 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "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.710298 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705986 ] } } +, +{ "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.460684, 37.706156 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459203, 37.706615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 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.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448646, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 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.450341, 37.716265 ] } } +, +{ "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.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448345, 37.710485 ] } } +, +{ "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.442659, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 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.445695, 37.711724 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.452208, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450877, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "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.441179, 37.716511 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441157, 37.716460 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440792, 37.716647 ] } } +, +{ "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.440406, 37.717156 ] } } +, +{ "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.716418 ] } } +, +{ "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.439623, 37.715679 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439312, 37.715722 ] } } +, +{ "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.437595, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712463 ] } } +, +{ "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.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710213 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714457 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713490 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436630, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.714033 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709976 ] } } +, +{ "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.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713337 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 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 & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 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.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434591, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708974 ] } } +, +{ "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.432510, 37.709636 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "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.710570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.475908, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730428 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 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.473097, 37.752402 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471970, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474095, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748840 ] } } +, +{ "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.472990, 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.746753 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "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.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470747, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749043 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.749332 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748840 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748992 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467057, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 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.471412, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471305, 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.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.471198, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470189, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 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.736393 ] } } +, +{ "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.741442 ] } } +, +{ "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.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741102 ] } } +, +{ "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.466016, 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.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465941, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465855, 37.740899 ] } } +, +{ "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.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465726, 37.740882 ] } } +, +{ "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.465533, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465919, 37.740771 ] } } +, +{ "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.465780, 37.740797 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465748, 37.740848 ] } } +, +{ "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.469052, 37.738099 ] } } +, +{ "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.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737861 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739847 ] } } +, +{ "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.466778, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465276, 37.739558 ] } } +, +{ "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.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454396, 37.751351 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 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.458785, 37.748280 ] } } +, +{ "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.458946, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458731, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458817, 37.747906 ] } } +, +{ "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.747262 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.457100, 37.745378 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457186, 37.745293 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747805 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "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.455555, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453839, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745701 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740407 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463688, 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.740237 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "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.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.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744157 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456414, 37.744004 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741628 ] } } +, +{ "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.455781, 37.743478 ] } } +, +{ "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.742876 ] } } +, +{ "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.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 37.736741 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474502, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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.735044 ] } } +, +{ "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.471627, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 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.734315 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735486 ] } } +, +{ "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.471262, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471455, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471713, 37.731633 ] } } +, +{ "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.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474545, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474374, 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.731243 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471820, 37.731277 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471691, 37.730955 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469803, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469589, 37.734866 ] } } +, +{ "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.468076, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466370, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.734866 ] } } +, +{ "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.465512, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469481, 37.729953 ] } } +, +{ "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.469106, 37.729996 ] } } +, +{ "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.467571, 37.728290 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475296, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721179 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.474588, 37.719532 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472721, 37.721493 ] } } +, +{ "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.471745, 37.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471541, 37.719719 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727221 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727204 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469739, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719753 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719770 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719617 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463967, 37.732041 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460812, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735316 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 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.461864, 37.729979 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 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.458967, 37.733610 ] } } +, +{ "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.458516, 37.732618 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732244 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457658, 37.732092 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.730700 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "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.726016 ] } } +, +{ "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.724964 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719795 ] } } +, +{ "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.461338, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461113, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460126, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458087, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.723640 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454225, 37.723453 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454203, 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.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458066, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457036, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.721764 ] } } +, +{ "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.456242, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720075 ] } } +, +{ "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.452036, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450341, 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.452390, 37.745336 ] } } +, +{ "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.451907, 37.745327 ] } } +, +{ "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.451317, 37.745005 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745938 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446092, 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.446586, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750417 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751690 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749128 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 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.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749959 ] } } +, +{ "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.447927, 37.746464 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747932 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444912, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746837 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747050 ] } } +, +{ "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.443968, 37.748975 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746702 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443217, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443045, 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.451189, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450684, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450663, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 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.449225, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740831 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449182, 37.740712 ] } } +, +{ "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.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451500, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740203 ] } } +, +{ "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.740186 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450362, 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.741391 ] } } +, +{ "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.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447745, 37.739898 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736843 ] } } +, +{ "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.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442466, 37.752301 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442616, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749077 ] } } +, +{ "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.440513, 37.750977 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440921, 37.749315 ] } } +, +{ "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.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438368, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.440299, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 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.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751232 ] } } +, +{ "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.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "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.434055, 37.751893 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751367 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433840, 37.749603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748856 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 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.435846, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.747075 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.746294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746261 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743597 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743631 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743257 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.743088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435750, 37.741594 ] } } +, +{ "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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436908, 37.738608 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738676 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436308, 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.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738896 ] } } +, +{ "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.738269 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737318 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 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.434226, 37.740195 ] } } +, +{ "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.434076, 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.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734196 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.732991 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.731701 ] } } +, +{ "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.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452294, 37.727628 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285, 37.728426 ] } } +, +{ "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.449172, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.729801 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446328, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.733992 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733958 ] } } +, +{ "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.445588, 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.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.731650 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731515 ] } } +, +{ "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.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453216, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.723546 ] } } +, +{ "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.452658, 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.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451457, 37.723046 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723029 ] } } +, +{ "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.451779, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451650, 37.719787 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720636 ] } } +, +{ "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.450287, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.722129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449354, 37.721637 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720398 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.723012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 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.444419, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447230, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.720992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720907 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 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.446232, 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.446768, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446779, 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.446897, 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.447144, 37.719863 ] } } +, +{ "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.447616, 37.719397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720636 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 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.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444977, 37.722859 ] } } +, +{ "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.444794, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444741, 37.722825 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 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.445266, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735010 ] } } +, +{ "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.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731515 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440020, 37.729003 ] } } +, +{ "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.728816 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727747 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.731396 ] } } +, +{ "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.733933 ] } } +, +{ "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.433840, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "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.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.733398 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.733602 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433861, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732533 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731328 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729801 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729597 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442402, 37.725906 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 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.442380, 37.725676 ] } } +, +{ "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.441329, 37.723368 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441243, 37.723266 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723674 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 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.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435900, 37.723826 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "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.435771, 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.434763, 37.724590 ] } } +, +{ "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.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723945 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435685, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433518, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433583, 37.726169 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723962 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434570, 37.722384 ] } } +, +{ "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.721620 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432681, 37.721646 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "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.431308, 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.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.718056 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448646, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 37.718285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "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.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473258, 37.784520 ] } } +, +{ "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.472721, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.784503 ] } } +, +{ "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.470855, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471112, 37.784461 ] } } +, +{ "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.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 37.782494 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780713 ] } } +, +{ "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.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.780577 ] } } +, +{ "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.470608, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784673 ] } } +, +{ "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.467046, 37.784749 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466713, 37.784469 ] } } +, +{ "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.464718, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469009, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782901 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465426, 37.783138 ] } } +, +{ "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.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.776795 ] } } +, +{ "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.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471949, 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.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471992, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468172, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.777202 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775269 ] } } +, +{ "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.468398, 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.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 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.465748, 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.784681 ] } } +, +{ "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.785360 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785707 ] } } +, +{ "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.783223 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 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.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 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.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459825, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781052 ] } } +, +{ "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.456843, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785665 ] } } +, +{ "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.458860, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783867 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783257 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.783079 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 37.781154 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781086 ] } } +, +{ "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.455684, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464246, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464052, 37.779008 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463924, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775455 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461756, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464117, 37.773674 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773742 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463838, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773946 ] } } +, +{ "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.458870, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "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.455373, 37.777643 ] } } +, +{ "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.458516, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774285 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454847, 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.454525, 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.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 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.765465 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765719 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765821 ] } } +, +{ "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.470340, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770537 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770443 ] } } +, +{ "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.468719, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.766008 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766025 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466348, 37.765855 ] } } +, +{ "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.466520, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764294 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464610, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763803 ] } } +, +{ "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.764108 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763947 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763921 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762233 ] } } +, +{ "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.466316, 37.762106 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761920 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.759307 ] } } +, +{ "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.473676, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 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.472700, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.759138 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473687, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756304 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 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.754116 ] } } +, +{ "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.469524, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470082, 37.758306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.758204 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468129, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467936, 37.758408 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.760410 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465962, 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.466059, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.758527 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 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.754812 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465554, 37.754642 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464288, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 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.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762403 ] } } +, +{ "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.461070, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460147, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460748, 37.762734 ] } } +, +{ "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.762530 ] } } +, +{ "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.765991 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764447 ] } } +, +{ "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.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.456521, 37.764939 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458752, 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.763726 ] } } +, +{ "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.454708, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454311, 37.764244 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.758612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463881, 37.758476 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758696 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461907, 37.757729 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463580, 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.463806, 37.754659 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463559, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756915 ] } } +, +{ "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.461091, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.456360, 37.755346 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786716 ] } } +, +{ "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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.784376 ] } } +, +{ "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.784995 ] } } +, +{ "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.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449998, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.782036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787361 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787191 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.785241 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 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.787742 ] } } +, +{ "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.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447294, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 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.445803, 37.782714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 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.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777762 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778101 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451371, 37.778016 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778356 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 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.449300, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453130, 37.774913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.774997 ] } } +, +{ "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.452766, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452508, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773064 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "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.449172, 37.773607 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449472, 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.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447144, 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.446918, 37.777541 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445449, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777575 ] } } +, +{ "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.446586, 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.446285, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445256, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.778966 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443603, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.776948 ] } } +, +{ "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.443432, 37.777101 ] } } +, +{ "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.447573, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447315, 37.773742 ] } } +, +{ "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.774065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446522, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445685, 37.773954 ] } } +, +{ "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.445738, 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.774200 ] } } +, +{ "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.440728, 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.787005 ] } } +, +{ "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.439945, 37.785156 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785343 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439741, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439440, 37.785266 ] } } +, +{ "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.438089, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 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.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439376, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439419, 37.783375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 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.439237, 37.781612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439076, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783630 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438818, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.780730 ] } } +, +{ "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.785801 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "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.786165 ] } } +, +{ "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.433057, 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.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781086 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780933 ] } } +, +{ "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.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "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.779170 ] } } +, +{ "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.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440170, 37.777525 ] } } +, +{ "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.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438518, 37.777737 ] } } +, +{ "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.438228, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438067, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441264, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.770757 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "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.774726 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437874, 37.774896 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437359, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437381, 37.771300 ] } } +, +{ "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.436469, 37.775218 ] } } +, +{ "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.434452, 37.775472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "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.434183, 37.775421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771334 ] } } +, +{ "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.433861, 37.771605 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.771783 ] } } +, +{ "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.452852, 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.453474, 37.768332 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453345, 37.768247 ] } } +, +{ "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.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450792, 37.769604 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769451 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450620, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769722 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448474, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768535 ] } } +, +{ "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.452937, 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.765338 ] } } +, +{ "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.452658, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451113, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.764608 ] } } +, +{ "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.765948 ] } } +, +{ "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.450137, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765567 ] } } +, +{ "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.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449719, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769943 ] } } +, +{ "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.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445427, 37.770316 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770096 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 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.446479, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446285, 37.767161 ] } } +, +{ "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.770214 ] } } +, +{ "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.443560, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442960, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444826, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447788, 37.766296 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766160 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447766, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445878, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.763022 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442809, 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.443711, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442917, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448989, 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.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.760927 ] } } +, +{ "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.446640, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760868 ] } } +, +{ "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.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 37.758798 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 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.445223, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.761207 ] } } +, +{ "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.445084, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 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.443550, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443496, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759799 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "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.443432, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443281, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755354 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755490 ] } } +, +{ "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.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767738 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768671 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766500 ] } } +, +{ "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.438282, 37.766703 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.766856 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441028, 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.437499, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 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.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769400 ] } } +, +{ "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.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.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.765838 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449, 37.764278 ] } } +, +{ "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": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435299, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435235, 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.435396, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762556 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 37.762378 ] } } +, +{ "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.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763964 ] } } +, +{ "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.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760495 ] } } +, +{ "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.438196, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438046, 37.759036 ] } } +, +{ "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.441157, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437853, 37.757568 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.757416 ] } } +, +{ "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.755821 ] } } +, +{ "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.435160, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.760842 ] } } +, +{ "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.434849, 37.760851 ] } } +, +{ "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.435975, 37.757679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.756101 ] } } +, +{ "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.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.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "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.752776 ] } } +, +{ "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.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "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.807470 ] } } +, +{ "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472121, 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.466810, 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.801027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467314, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802909 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459139, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460362, 37.798535 ] } } +, +{ "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.458001, 37.803808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456821, 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.456789, 37.801638 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456735, 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.456285, 37.803859 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "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.802307 ] } } +, +{ "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.456328, 37.801587 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.801434 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.797959 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797738 ] } } +, +{ "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.454740, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 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.453946, 37.800536 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456306, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798264 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455105, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454997, 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.799111 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.799078 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799128 ] } } +, +{ "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.450137, 37.798060 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804350 ] } } +, +{ "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.804562 ] } } +, +{ "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.443432, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802485 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444805, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802858 ] } } +, +{ "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.443324, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800332 ] } } +, +{ "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.447144, 37.798425 ] } } +, +{ "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.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800977 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.800044 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798671 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "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.795754 ] } } +, +{ "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.445320, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.790913 ] } } +, +{ "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.790718 ] } } +, +{ "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.447047, 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.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791193 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441286, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800451 ] } } +, +{ "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.439430, 37.799298 ] } } +, +{ "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.437466, 37.800722 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796882 ] } } +, +{ "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.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804452 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.803554 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802825 ] } } +, +{ "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.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804876 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433347, 37.803435 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 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.433068, 37.801163 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801316 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436479, 37.800892 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +, +{ "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.436136, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "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.800951 ] } } +, +{ "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.797399 ] } } +, +{ "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.435589, 37.796975 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432595, 37.797518 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.796178 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438689, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 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.440900, 37.789972 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439247, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "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.795865 ] } } +, +{ "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.436286, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434849, 37.794160 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "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.433400, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 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.436329, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436115, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434613, 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.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 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.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789582 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788938 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433926, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432510, 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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "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.440728, 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.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801519 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.427188, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718938 ] } } +, +{ "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.427070, 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.718904 ] } } +, +{ "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.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 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.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717563 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428358, 37.717487 ] } } +, +{ "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.710570 ] } } +, +{ "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.428197, 37.711877 ] } } +, +{ "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.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422789, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 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.422124, 37.713710 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421159, 37.713226 ] } } +, +{ "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.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423111, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708991 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712980 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419549, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.712607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712420 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418691, 37.711860 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418884, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 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.415494, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712030 ] } } +, +{ "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.414474, 37.718124 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.715034 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 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.412640, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412790, 37.711062 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.710986 ] } } +, +{ "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.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710595 ] } } +, +{ "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.710366 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709874 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420365, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 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.418240, 37.707905 ] } } +, +{ "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.707141 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 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.412940, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.706530 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708261 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407190, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717292 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716664 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405730, 37.716604 ] } } +, +{ "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.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717054 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715348 ] } } +, +{ "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.409056, 37.713846 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 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.408971, 37.711707 ] } } +, +{ "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.409528, 37.710010 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408541, 37.709908 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 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.404969, 37.713218 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "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.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716290 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716104 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 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.399937, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.716358 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716273 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714678 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714814 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.713846 ] } } +, +{ "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.401997, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "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.402383, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402426, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402319, 37.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712250 ] } } +, +{ "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.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 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.400688, 37.712021 ] } } +, +{ "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.398961, 37.711622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 37.709865 ] } } +, +{ "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.406696, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708974 ] } } +, +{ "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.405055, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 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.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711198 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397233, 37.711215 ] } } +, +{ "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.710977 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394766, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.711249 ] } } +, +{ "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.389219, 37.717020 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "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.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392899, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "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.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 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.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429774, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427553, 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.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427360, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427124, 37.749187 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427081, 37.746990 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746787 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425321, 37.751910 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751792 ] } } +, +{ "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.422993, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743605 ] } } +, +{ "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.426662, 37.742816 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426630, 37.742646 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742103 ] } } +, +{ "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.426469, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 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.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737115 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.742171 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421137, 37.743817 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422178, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742443 ] } } +, +{ "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.425504, 37.739626 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424291, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424163, 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.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738998 ] } } +, +{ "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.424206, 37.737064 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 37.737454 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424334, 37.736215 ] } } +, +{ "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.420912, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 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.752326 ] } } +, +{ "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.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420450, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.750282 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418498, 37.750672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 37.752318 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416180, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416159, 37.752453 ] } } +, +{ "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.749009 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416073, 37.749111 ] } } +, +{ "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.748000 ] } } +, +{ "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.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.748577 ] } } +, +{ "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.418090, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 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.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.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414249, 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.414035, 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.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414056, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413884, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413863, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413713, 37.749230 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413799, 37.748483 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748347 ] } } +, +{ "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.748381 ] } } +, +{ "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.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.746871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413498, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.745327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411910, 37.748407 ] } } +, +{ "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.748347 ] } } +, +{ "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.409765, 37.748237 ] } } +, +{ "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.419978, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419699, 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.418466, 37.739304 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 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.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410473, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410516, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741459 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.741238 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409786, 37.741832 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "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.413670, 37.739007 ] } } +, +{ "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.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737166 ] } } +, +{ "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.413530, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739575 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411417, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739796 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735638 ] } } +, +{ "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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429334, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732176 ] } } +, +{ "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.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429656, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429720, 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.431308, 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.728782 ] } } +, +{ "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.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728613 ] } } +, +{ "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.424710, 37.735621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.735918 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422575, 37.735248 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735078 ] } } +, +{ "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.426094, 37.728562 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730955 ] } } +, +{ "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.422575, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430600, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723996 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.723114 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429473, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 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.427628, 37.721365 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427768, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426480, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.720907 ] } } +, +{ "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.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426180, 37.720415 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718938 ] } } +, +{ "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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724658 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424377, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424227, 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.423251, 37.725201 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 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.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426051, 37.720406 ] } } +, +{ "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.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735061 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.732295 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417017, 37.735647 ] } } +, +{ "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.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417768, 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.415268, 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.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416116, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734739 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734875 ] } } +, +{ "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.413648, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 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.413595, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413927, 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.734917 ] } } +, +{ "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.729851 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.729936 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414571, 37.727408 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414399, 37.727391 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730921 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730972 ] } } +, +{ "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.420290, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726406 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "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.718904 ] } } +, +{ "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.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.724998 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.722944 ] } } +, +{ "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.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.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722842 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752521 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.751308 ] } } +, +{ "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.408895, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408735, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 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.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 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.402233, 37.751893 ] } } +, +{ "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.750842 ] } } +, +{ "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.750723 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400151, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 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.409410, 37.742867 ] } } +, +{ "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.405237, 37.743325 ] } } +, +{ "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.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 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.739677 ] } } +, +{ "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.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.406771, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 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.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403349, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "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.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398821, 37.743902 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400452, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403735, 37.738795 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739134 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739558 ] } } +, +{ "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.398896, 37.736368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.752385 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 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.752250 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.751435 ] } } +, +{ "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.749035 ] } } +, +{ "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.749874 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396225, 37.750010 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752504 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396268, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393929, 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.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392770, 37.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 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.738218 ] } } +, +{ "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.396729, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.737166 ] } } +, +{ "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.394680, 37.736224 ] } } +, +{ "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.736640 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390538, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390474, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740907 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742714 ] } } +, +{ "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.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.388157, 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.739762 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738082 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390517, 37.737522 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391654, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391526, 37.736309 ] } } +, +{ "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.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.389809, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389637, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737929 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732176 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733279 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404722, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733059 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728002 ] } } +, +{ "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.404518, 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.402576, 37.734170 ] } } +, +{ "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.401074, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400666, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399465, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731905 ] } } +, +{ "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.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403649, 37.727526 ] } } +, +{ "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.727747 ] } } +, +{ "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.401450, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.728086 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.730378 ] } } +, +{ "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.401021, 37.729122 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729105 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408456, 37.726287 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.407469, 37.726678 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408649, 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.407640, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720771 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726372 ] } } +, +{ "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.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.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.723563 ] } } +, +{ "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.723402 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.720933 ] } } +, +{ "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.721612 ] } } +, +{ "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.401160, 37.721450 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721484 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400430, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395560, 37.731803 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395281, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395409, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395259, 37.729733 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727925 ] } } +, +{ "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.735036 ] } } +, +{ "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.392663, 37.735036 ] } } +, +{ "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.735689 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392083, 37.735672 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735078 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390839, 37.734366 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390732, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 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.734026 ] } } +, +{ "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.390860, 37.733856 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391568, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732287 ] } } +, +{ "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.391504, 37.732270 ] } } +, +{ "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.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735418 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 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.390184, 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.389036, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732923 ] } } +, +{ "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.730445 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392856, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 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.392598, 37.729240 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729207 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393028, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728086 ] } } +, +{ "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.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725676 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725490 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394208, 37.725303 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724166 ] } } +, +{ "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.395248, 37.723131 ] } } +, +{ "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.398435, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.722486 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720788 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 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.396718, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.722418 ] } } +, +{ "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.395420, 37.722638 ] } } +, +{ "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.722384 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.722341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394851, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.722036 ] } } +, +{ "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.727077 ] } } +, +{ "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.391461, 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.389594, 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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "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.748950 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "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.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "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.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "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.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 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.429870, 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.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428712, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786937 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 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.785037 ] } } +, +{ "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.428948, 37.781926 ] } } +, +{ "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.782137 ] } } +, +{ "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.424989, 37.786131 ] } } +, +{ "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.785054 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786581 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422897, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785784 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "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.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784664 ] } } +, +{ "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.421137, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421180, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 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.425536, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.779695 ] } } +, +{ "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.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783206 ] } } +, +{ "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.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778864 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426716, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426330, 37.777389 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428282, 37.776269 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.772148 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430493, 37.772012 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 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.779390 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424957, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423025, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421674, 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.425472, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773819 ] } } +, +{ "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.770961 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422532, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420965, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 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.771775 ] } } +, +{ "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.420204, 37.787802 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419978, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.786920 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 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.420644, 37.785851 ] } } +, +{ "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.419163, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787055 ] } } +, +{ "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.416266, 37.787242 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.785088 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.782867 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783189 ] } } +, +{ "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.419270, 37.782188 ] } } +, +{ "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.420150, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779695 ] } } +, +{ "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.419013, 37.780314 ] } } +, +{ "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.783359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417425, 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.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781697 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782629 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "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.780577 ] } } +, +{ "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.415880, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.780789 ] } } +, +{ "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.414979, 37.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785546 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.784715 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784885 ] } } +, +{ "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.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786988 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787174 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.409775, 37.786106 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785851 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410794, 37.784105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.781078 ] } } +, +{ "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.412447, 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.412618, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.783392 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410237, 37.782324 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781171 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419828, 37.778695 ] } } +, +{ "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.419753, 37.778194 ] } } +, +{ "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.778389 ] } } +, +{ "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.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.775218 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419184, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.775150 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "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.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416760, 37.778746 ] } } +, +{ "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.416245, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416223, 37.777592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775947 ] } } +, +{ "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.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774930 ] } } +, +{ "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.418605, 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.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.774311 ] } } +, +{ "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.416899, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773335 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415386, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } +, +{ "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.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414764, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777236 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776456 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778975 ] } } +, +{ "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.410516, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776227 ] } } +, +{ "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.414228, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771741 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.771597 ] } } +, +{ "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.412640, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429935, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 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.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769417 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429141, 37.769468 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429098, 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.429001, 37.767789 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } +, +{ "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": "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.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.769790 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769434 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 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.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.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.765694 ] } } +, +{ "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.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.764464 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428561, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428529, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.764736 ] } } +, +{ "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.424978, 37.770571 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769807 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.770155 ] } } +, +{ "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.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766788 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 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.764854 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765236 ] } } +, +{ "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.430471, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 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.758272 ] } } +, +{ "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.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757458 ] } } +, +{ "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.426931, 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.427757, 37.754608 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761394 ] } } +, +{ "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.761529 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.761767 ] } } +, +{ "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.761428 ] } } +, +{ "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.759867 ] } } +, +{ "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.758747 ] } } +, +{ "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.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755558 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419935, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767806 ] } } +, +{ "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.766686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767144 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768467 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.768467 ] } } +, +{ "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.419678, 37.765126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.765007 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419506, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 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.419356, 37.762641 ] } } +, +{ "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.417650, 37.765261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765380 ] } } +, +{ "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.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.762123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763836 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770367 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 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.410816, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410687, 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.412983, 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.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 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.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "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.419099, 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.417006, 37.758934 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 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.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754286 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 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.414786, 37.759002 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.758815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758764 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "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.410086, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409915, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409936, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.408134, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.786326 ] } } +, +{ "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.409518, 37.785071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784274 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783918 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.784071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408584, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408413, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407962, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407790, 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.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784308 ] } } +, +{ "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.784088 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408220, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407705, 37.784206 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407318, 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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786648 ] } } +, +{ "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.404593, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406245, 37.785767 ] } } +, +{ "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.405902, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 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.404529, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.781196 ] } } +, +{ "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.782731 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 37.782595 ] } } +, +{ "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.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "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.403445, 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.787717 ] } } +, +{ "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.401578, 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.402083, 37.786352 ] } } +, +{ "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.403939, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399036, 37.786216 ] } } +, +{ "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.400838, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.784953 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.784003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398778, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402555, 37.783036 ] } } +, +{ "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.403467, 37.780442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780391 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780679 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409228, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.776643 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404250, 37.777321 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 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.407136, 37.772538 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772335 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408177, 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.405012, 37.774590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774387 ] } } +, +{ "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.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402147, 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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 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.399958, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776456 ] } } +, +{ "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.401954, 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.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399443, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "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.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785631 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 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.785521 ] } } +, +{ "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.396568, 37.785326 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784198 ] } } +, +{ "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.395023, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397684, 37.782443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782646 ] } } +, +{ "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.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393478, 37.782850 ] } } +, +{ "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.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "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.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387964, 37.784605 ] } } +, +{ "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.391955, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390689, 37.780628 ] } } +, +{ "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.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "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.389830, 37.779628 ] } } +, +{ "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.396654, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396611, 37.778313 ] } } +, +{ "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.396139, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397169, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775438 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397212, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394637, 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.395141, 37.777117 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777033 ] } } +, +{ "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.394755, 37.777016 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776371 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393907, 37.776329 ] } } +, +{ "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.393950, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.776286 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776066 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772894 ] } } +, +{ "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.778729 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 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.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776193 ] } } +, +{ "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.389723, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772623 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389723, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771164 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768264 ] } } +, +{ "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.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 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.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764235 ] } } +, +{ "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.404701, 37.766042 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404443, 37.764566 ] } } +, +{ "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.404336, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770163 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403156, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403048, 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.402920, 37.767467 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403628, 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.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.766016 ] } } +, +{ "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.402683, 37.764871 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401718, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401460, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401525, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763565 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402533, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766228 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399293, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401375, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407297, 37.761648 ] } } +, +{ "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.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759087 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404186, 37.762021 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404207, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406846, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757407 ] } } +, +{ "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.409496, 37.755728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "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.406911, 37.757492 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406610, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406760, 37.755880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754303 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754421 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 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.402920, 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.402169, 37.759443 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.759596 ] } } +, +{ "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.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 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.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754455 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402469, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401696, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.754336 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757441 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757305 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398864, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755914 ] } } +, +{ "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.400581, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397019, 37.766500 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.766406 ] } } +, +{ "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.397791, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397577, 37.762615 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397362, 37.762581 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395431, 37.762708 ] } } +, +{ "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.393478, 37.762836 ] } } +, +{ "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.391043, 37.770520 ] } } +, +{ "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.766771 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389294, 37.769722 ] } } +, +{ "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.389305, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389315, 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.389358, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767195 ] } } +, +{ "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.389187, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.764244 ] } } +, +{ "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.389669, 37.762904 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388951, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762997 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762980 ] } } +, +{ "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.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.761156 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398371, 37.759875 ] } } +, +{ "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.760138 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760088 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.759994 ] } } +, +{ "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.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.760045 ] } } +, +{ "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.398049, 37.757458 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397898, 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.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754710 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396568, 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.395710, 37.756830 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757645 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 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.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760596 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760579 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390088, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390002, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758043 ] } } +, +{ "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.758018 ] } } +, +{ "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.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.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755422 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "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.414035, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 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.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 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.386934, 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": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 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.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.422092, 37.806351 ] } } +, +{ "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.420686, 37.806724 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.806690 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805707 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420472, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.805808 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420279, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808326 ] } } +, +{ "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.417414, 37.806173 ] } } +, +{ "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.417597, 37.805495 ] } } +, +{ "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.808038 ] } } +, +{ "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.414249, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410816, 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.412254, 37.807606 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412039, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806504 ] } } +, +{ "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.410601, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410387, 37.807046 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801519 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "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.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426223, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427381, 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.425418, 37.805113 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425407, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425257, 37.805164 ] } } +, +{ "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.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.805249 ] } } +, +{ "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.803384 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424914, 37.802435 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424849, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802587 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423390, 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.800485 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424248, 37.798586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798450 ] } } +, +{ "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.422296, 37.799010 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798806 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798688 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797738 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 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.429506, 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.792550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 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.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 37.790532 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427510, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427145, 37.790684 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796416 ] } } +, +{ "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.423337, 37.796085 ] } } +, +{ "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.423133, 37.794907 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794923 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.794788 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 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.421545, 37.795280 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421480, 37.795118 ] } } +, +{ "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.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 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.794050 ] } } +, +{ "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.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.793703 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794194 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.793499 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793194 ] } } +, +{ "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.791049 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 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.422296, 37.791380 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422339, 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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790650 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.790498 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789514 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420107, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 37.801918 ] } } +, +{ "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.415247, 37.805334 ] } } +, +{ "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.801019 ] } } +, +{ "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.800214 ] } } +, +{ "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.420536, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800180 ] } } +, +{ "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.799188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799128 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798349 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798315 ] } } +, +{ "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.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417554, 37.799451 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799332 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.799696 ] } } +, +{ "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.414957, 37.804384 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.803418 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803291 ] } } +, +{ "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.802604 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.802689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412661, 37.802096 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411889, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802774 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "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.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409700, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414035, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800909 ] } } +, +{ "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.412575, 37.799959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412554, 37.799976 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.800044 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412361, 37.799027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412211, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410365, 37.800502 ] } } +, +{ "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.410644, 37.800205 ] } } +, +{ "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.800417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412018, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797212 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420043, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419871, 37.795330 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.796500 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796348 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795381 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418369, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795551 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794415 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419807, 37.793414 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.794550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418047, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 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.417908, 37.792762 ] } } +, +{ "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.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "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.420547, 37.790667 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790871 ] } } +, +{ "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.789675 ] } } +, +{ "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.420536, 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.417639, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791023 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.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.415676, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 37.789158 ] } } +, +{ "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.415301, 37.789226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414850, 37.795042 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795263 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414700, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794262 ] } } +, +{ "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.411824, 37.796212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796127 ] } } +, +{ "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.411524, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411674, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411717, 37.795458 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410001, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.794635 ] } } +, +{ "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.411535, 37.794449 ] } } +, +{ "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.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "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.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414099, 37.791354 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412618, 37.791549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789446 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "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.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410988, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410966, 37.791753 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410322, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "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.407908, 37.807351 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406288, 37.806953 ] } } +, +{ "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.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803503 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408048, 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.409507, 37.802214 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803706 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803011 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802994 ] } } +, +{ "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.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405688, 37.801773 ] } } +, +{ "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.409056, 37.799281 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799391 ] } } +, +{ "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.800688 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797196 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797857 ] } } +, +{ "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.800917 ] } } +, +{ "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.404475, 37.801095 ] } } +, +{ "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.406900, 37.798128 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406353, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796992 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797060 ] } } +, +{ "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.403778, 37.805198 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.805147 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805029 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803935 ] } } +, +{ "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.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 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.399379, 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.797399 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797552 ] } } +, +{ "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.398928, 37.800612 ] } } +, +{ "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.796865 ] } } +, +{ "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.408327, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "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.409636, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793050 ] } } +, +{ "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.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.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407597, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796127 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404314, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796076 ] } } +, +{ "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.405977, 37.794271 ] } } +, +{ "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.405967, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404422, 37.794483 ] } } +, +{ "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.404282, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792600 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792075 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791956 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.791948 ] } } +, +{ "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.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791100 ] } } +, +{ "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.408649, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406932, 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.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.792380 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "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.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795737 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794686 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793787 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792770 ] } } +, +{ "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.401557, 37.794033 ] } } +, +{ "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.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.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.793313 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400109, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398928, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791007 ] } } +, +{ "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.402126, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "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": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792295 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791074 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790345 ] } } +, +{ "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.399776, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "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.401235, 37.789260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789073 ] } } +, +{ "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.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798976 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397877, 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.798908 ] } } +, +{ "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.396160, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 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.397619, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397705, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398521, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397727, 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.396804, 37.793533 ] } } +, +{ "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.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.792990 ] } } +, +{ "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.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793194 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.793160 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396396, 37.793143 ] } } +, +{ "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.793499 ] } } +, +{ "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.795008 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.795110 ] } } +, +{ "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.393779, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793737 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 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.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394916, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794466 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794432 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394272, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393457, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.793770 ] } } +, +{ "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.393457, 37.793906 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393414, 37.793465 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393500, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393264, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793211 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791651 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791515 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.791973 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394358, 37.792397 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "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.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.395935, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.789192 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789938 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394294, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.789820 ] } } +, +{ "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.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792694 ] } } +, +{ "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.392416, 37.791346 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392566, 37.791176 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792346 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391075, 37.792160 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391869, 37.789277 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393092, 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.390206, 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.389905, 37.790566 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.790489 ] } } +, +{ "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.388543, 37.789684 ] } } +, +{ "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.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "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.420204, 37.787802 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "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.403445, 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.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742714 ] } } +, +{ "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.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.388157, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "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.748950 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386655, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 37.741408 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386419, 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.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742545 ] } } +, +{ "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.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383178, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741136 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384444, 37.741068 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384573, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384509, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386547, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386290, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385882, 37.736606 ] } } +, +{ "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.382642, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382556, 37.739813 ] } } +, +{ "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.384166, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381011, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738778 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737081 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379509, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737675 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "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.386644, 37.732584 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386612, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385989, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386054, 37.733008 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "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.383060, 37.734696 ] } } +, +{ "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.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383329, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383093, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386569, 37.729563 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385153, 37.730802 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383586, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730157 ] } } +, +{ "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.728375 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729427 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379531, 37.734026 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382127, 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.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379917, 37.732499 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379702, 37.732397 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "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.379348, 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.377235, 37.732923 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380346, 37.730581 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381376, 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.380196, 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.377020, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726118 ] } } +, +{ "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.731998 ] } } +, +{ "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.730938 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374488, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373136, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368716, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725337 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365197, 37.728596 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365454, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387964, 37.784605 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758043 ] } } +, +{ "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.758018 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755422 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "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.386934, 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.386794, 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.383060, 37.755643 ] } } +, +{ "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": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } +, +{ "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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371806, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371441, 37.816226 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366334, 37.820006 ] } } +, +{ "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.371141, 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.371023, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370862, 37.813149 ] } } +, +{ "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.811810 ] } } +, +{ "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.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363373, 37.810513 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363394, 37.810386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375261, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829828 ] } } +, +{ "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.828319 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376312, 37.825472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375647, 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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "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.371463, 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.825201 ] } } +, +{ "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.823633 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +] } +] } +] } diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json new file mode 100644 index 0000000..565f778 --- /dev/null +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -0,0 +1,21266 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.409668,37.770713,13", +"description": "tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "13", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832497 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530303, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830497 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831446 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "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.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "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.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "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.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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": "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 & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719711 ] } } +, +{ "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.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "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.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "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.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "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.719371 ] } } +, +{ "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.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "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.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398467, 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.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.719948 ] } } +, +{ "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.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714890 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.715026 ] } } +, +{ "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.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "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.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713125 ] } } +, +{ "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": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712514 ] } } +, +{ "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.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +, +{ "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.464943, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468677, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713193 ] } } +, +{ "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.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "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.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.710409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707387 ] } } +, +{ "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 & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "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.448463, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714483 ] } } +, +{ "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 & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712853 ] } } +, +{ "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.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.428379, 37.717504 ] } } +, +{ "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.711767 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710069 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713260 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "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.418251, 37.707930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412972, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "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": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715365 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } +, +{ "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.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 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 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397265, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 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.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832870 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803986 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.792253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480521, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807580 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "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.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.798459 ] } } +, +{ "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.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801748 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798086 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +, +{ "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.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "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.441854, 37.803104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438722, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 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.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.796017 ] } } +, +{ "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.436318, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788861 ] } } +, +{ "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.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.790015 ] } } +, +{ "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.509961, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509618, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509446, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510819, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508502, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507472, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503867, 37.775362 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500434, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771902 ] } } +, +{ "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.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767899 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 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.509232, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +, +{ "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.506185, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508159, 37.760300 ] } } +, +{ "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.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505927, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499404, 37.760775 ] } } +, +{ "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.496657, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490649, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490220, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "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.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +, +{ "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.491980, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 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.485070, 37.785707 ] } } +, +{ "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.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781976 ] } } +, +{ "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.484641, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481809, 37.782112 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778076 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772716 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477946, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762641 ] } } +, +{ "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.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.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495885, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.760978 ] } } +, +{ "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.495627, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496743, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489533, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477345, 37.763692 ] } } +, +{ "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.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "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.480006, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476573, 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.479749, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +, +{ "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.506399, 37.752801 ] } } +, +{ "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 ] } } +, +{ "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.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501035, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +, +{ "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.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500777, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 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.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 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.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494941, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497344, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490993, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486959, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.740144 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.748220 ] } } +, +{ "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.481337, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738990 ] } } +, +{ "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.478461, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "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.483997, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486444, 37.729656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726364 ] } } +, +{ "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.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "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.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784385 ] } } +, +{ "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.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469192, 37.784690 ] } } +, +{ "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 & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "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.472024, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 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.466016, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "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.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "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.458892, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783978 ] } } +, +{ "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.458978, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "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.455716, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.779025 ] } } +, +{ "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.464128, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +, +{ "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.466187, 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.469363, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763828 ] } } +, +{ "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.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759180 ] } } +, +{ "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.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755278 ] } } +, +{ "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.472196, 37.754124 ] } } +, +{ "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.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760435 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.762335 ] } } +, +{ "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.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766067 ] } } +, +{ "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.458205, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "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.461939, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.753785 ] } } +, +{ "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": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784995 ] } } +, +{ "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.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "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.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782349 ] } } +, +{ "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.453313, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449622, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452798, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773395 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "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.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.787030 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.785368 ] } } +, +{ "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.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +, +{ "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.439108, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437692, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780518 ] } } +, +{ "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.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.786013 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.781095 ] } } +, +{ "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.432370, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.781366 ] } } +, +{ "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.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.769358 ] } } +, +{ "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.453356, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "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.452970, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.446704, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765253 ] } } +, +{ "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.445974, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "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.443743, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449021, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "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.444515, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.759825 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768849 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +, +{ "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.767628 ] } } +, +{ "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": "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.433572, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764507 ] } } +, +{ "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.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "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.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760978 ] } } +, +{ "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.434945, 37.759417 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757653 ] } } +, +{ "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.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +, +{ "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.473741, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745132 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } +, +{ "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.466531, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752971 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468591, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "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.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736410 ] } } +, +{ "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.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741196 ] } } +, +{ "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.465887, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 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 & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "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.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454429, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.734883 ] } } +, +{ "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.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "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.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 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" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721612 ] } } +, +{ "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.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "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.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "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.458119, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454257, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "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 & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721781 ] } } +, +{ "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.719914 ] } } +, +{ "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.720016 ] } } +, +{ "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.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.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "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.443442, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "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.451425, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.739261 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +, +{ "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.442498, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "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.436404, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.746320 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748288 ] } } +, +{ "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.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 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.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.740211 ] } } +, +{ "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.432842, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "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.448978, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729826 ] } } +, +{ "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.446489, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "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.731659 ] } } +, +{ "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": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "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.451811, 37.719711 ] } } +, +{ "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.450008, 37.722155 ] } } +, +{ "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.450137, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "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.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "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.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "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.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723377 ] } } +, +{ "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.434816, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.423229, 37.806393 ] } } +, +{ "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.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.805512 ] } } +, +{ "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.412543, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.808123 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "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.431040, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800968 ] } } +, +{ "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.805139 ] } } +, +{ "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 & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.793168 ] } } +, +{ "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.426233, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.796085 ] } } +, +{ "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.422929, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 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": "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": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801036 ] } } +, +{ "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.419195, 37.800188 ] } } +, +{ "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.418981, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.799544 ] } } +, +{ "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.414989, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "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": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796526 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.793847 ] } } +, +{ "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": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.792083 ] } } +, +{ "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.415633, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.795339 ] } } +, +{ "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.411385, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.793813 ] } } +, +{ "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.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "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.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806970 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "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.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "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.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797882 ] } } +, +{ "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.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "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": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796255 ] } } +, +{ "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.409668, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.791982 ] } } +, +{ "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.408938, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 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.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794491 ] } } +, +{ "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 & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.793338 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798933 ] } } +, +{ "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.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "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.394476, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "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.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 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.792728 ] } } +, +{ "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.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.791100 ] } } +, +{ "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.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "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.370100, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825345 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367997, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "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": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364907, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811886 ] } } +, +{ "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.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784520 ] } } +, +{ "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.427092, 37.786962 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "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.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "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.422929, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784927 ] } } +, +{ "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 & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431598, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776074 ] } } +, +{ "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.426748, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772173 ] } } +, +{ "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.430224, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.786928 ] } } +, +{ "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": "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.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 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.416277, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.782655 ] } } +, +{ "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.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.787912 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "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.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 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.410440, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778211 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.775973 ] } } +, +{ "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.419281, 37.775057 ] } } +, +{ "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.418509, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 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.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767560 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 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.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "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.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 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/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754803 ] } } +, +{ "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.421770, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 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.420053, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759825 ] } } +, +{ "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.419109, 37.758196 ] } } +, +{ "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.418981, 37.756601 ] } } +, +{ "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.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.759350 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.784215 ] } } +, +{ "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.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.785673 ] } } +, +{ "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.404304, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.782112 ] } } +, +{ "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.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.783062 ] } } +, +{ "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.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.785639 ] } } +, +{ "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.394218, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "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.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.780009 ] } } +, +{ "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.387996, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.773191 ] } } +, +{ "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.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.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "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.405548, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "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.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "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.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399325, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "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.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "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.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.754532 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "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.400012, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.766881 ] } } +, +{ "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.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 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.396150, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429795, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736682 ] } } +, +{ "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.429023, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "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": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748220 ] } } +, +{ "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.409797, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "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 & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 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.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430310, 37.735494 ] } } +, +{ "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.431340, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429366, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "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.428637, 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.424731, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.721679 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.725617 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 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.420096, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.733288 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 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.413616, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "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.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726432 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727043 ] } } +, +{ "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.414174, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "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.409110, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.750867 ] } } +, +{ "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.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.747134 ] } } +, +{ "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.742892 ] } } +, +{ "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.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739702 ] } } +, +{ "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.406793, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738718 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "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": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397094, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "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.393961, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "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.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "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.737598 ] } } +, +{ "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.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 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.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.733084 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "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.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399497, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731930 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726703 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723512 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "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": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724191 ] } } +, +{ "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.398467, 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": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.719948 ] } } +, +{ "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.386923, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "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.387180, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "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.384477, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "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.382588, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381816, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737700 ] } } +, +{ "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.735867 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386022, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384820, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383618, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382760, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382159, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378983, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "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.381430, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "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.386708, 37.726058 ] } } +, +{ "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 & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374520, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370229, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 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.456145, 37.716452 ] } } +, +{ "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 & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "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.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "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.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 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.716689 ] } } +, +{ "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.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "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.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530282, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523243, 37.831429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 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.483225, 37.718624 ] } } +, +{ "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.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475393, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 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.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451789, 37.719694 ] } } +, +{ "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.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443850, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480114, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480199, 37.714601 ] } } +, +{ "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.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709135 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.717453 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716027 ] } } +, +{ "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.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717385 ] } } +, +{ "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.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 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.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.713566 ] } } +, +{ "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.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714330 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 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.469471, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469342, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467239, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467153, 37.711580 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "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.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.468655, 37.707064 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714364 ] } } +, +{ "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.462604, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462347, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459171, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461574, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460287, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715993 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "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.456124, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710392 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705995 ] } } +, +{ "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.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.706623 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707370 ] } } +, +{ "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 & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448356, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.453334, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.440803, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440760, 37.716418 ] } } +, +{ "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.439623, 37.715688 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715722 ] } } +, +{ "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.437606, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437971, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714262 ] } } +, +{ "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.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 & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.709984 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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 & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "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.447047, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509425, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509854, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779755 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 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.503846, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.775498 ] } } +, +{ "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.773547 ] } } +, +{ "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.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505691, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.771783 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500412, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 37.775515 ] } } +, +{ "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.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510068, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760181 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764201 ] } } +, +{ "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.506163, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505991, 37.762216 ] } } +, +{ "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.508137, 37.760283 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506077, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505863, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "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.502859, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499382, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499168, 37.760690 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.779449 ] } } +, +{ "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.494404, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "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.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.781552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493417, 37.779585 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491443, 37.781671 ] } } +, +{ "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.783587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490628, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489984, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486894, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488053, 37.779873 ] } } +, +{ "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.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "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.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772089 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776125 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489641, 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": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485306, 37.783825 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 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.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "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.484984, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780094 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "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.479856, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780467 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.778296 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776193 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482431, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774565 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484534, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772699 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772360 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481358, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480285, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477925, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480628, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772869 ] } } +, +{ "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.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764897 ] } } +, +{ "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.495863, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 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.495606, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495477, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "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.753497 ] } } +, +{ "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.489469, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487323, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765338 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765439 ] } } +, +{ "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.480285, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477624, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477324, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763438 ] } } +, +{ "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.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754057 ] } } +, +{ "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.480114, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759604 ] } } +, +{ "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": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476723, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476552, 37.757874 ] } } +, +{ "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.479727, 37.755906 ] } } +, +{ "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.479620, 37.754345 ] } } +, +{ "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.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": "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 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752852 ] } } +, +{ "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.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503588, 37.753140 ] } } +, +{ "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.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507021, 37.747355 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506721, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501013, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498868, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753225 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747423 ] } } +, +{ "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.499533, 37.747694 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "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.504275, 37.737989 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742129 ] } } +, +{ "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.735579 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735613 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501357, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730675 ] } } +, +{ "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.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731608 ] } } +, +{ "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.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495434, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495134, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747592 ] } } +, +{ "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.495370, 37.745862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493117, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490971, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491229, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488825, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486937, 37.748135 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486680, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744233 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494490, 37.743995 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494361, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738633 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494104, 37.738396 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742502 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489769, 37.742366 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487581, 37.744284 ] } } +, +{ "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": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487409, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487237, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748475 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.748543 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748305 ] } } +, +{ "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.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475693, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496593, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493932, 37.732949 ] } } +, +{ "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.730352 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734153 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734255 ] } } +, +{ "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.483976, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486422, 37.729639 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.734663 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479641, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734764 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728010 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730013 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482560, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "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.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480071, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478826, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475650, 37.719117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.784605 ] } } +, +{ "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.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.780535 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780789 ] } } +, +{ "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.780840 ] } } +, +{ "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 St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466724, 37.784469 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.783147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 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.472239, 37.776905 ] } } +, +{ "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.470543, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468183, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775277 ] } } +, +{ "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.468398, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467625, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464492, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.783028 ] } } +, +{ "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.464170, 37.781145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456853, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455223, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.783079 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 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.455695, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779178 ] } } +, +{ "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.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773853 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455051, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774802 ] } } +, +{ "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.454150, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453892, 37.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.770867 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765473 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765914 ] } } +, +{ "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.469342, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464621, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 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.762149 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "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.473612, 37.756313 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755261 ] } } +, +{ "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.472174, 37.754124 ] } } +, +{ "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.470050, 37.758213 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760418 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760249 ] } } +, +{ "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.465823, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756686 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465565, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462475, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462862, 37.762403 ] } } +, +{ "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.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460759, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "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.457969, 37.765999 ] } } +, +{ "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.766050 ] } } +, +{ "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.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 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.454922, 37.766220 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.758620 ] } } +, +{ "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.461917, 37.757738 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463591, 37.756771 ] } } +, +{ "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.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756924 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459986, 37.753768 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451961, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450287, 37.784385 ] } } +, +{ "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.784995 ] } } +, +{ "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.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785249 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778025 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778364 ] } } +, +{ "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.449300, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452862, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.773615 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775684 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445266, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447326, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 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.445738, 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.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440331, 37.787013 ] } } +, +{ "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.439945, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 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.438099, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783180 ] } } +, +{ "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.781620 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "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.780891 ] } } +, +{ "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.433572, 37.788064 ] } } +, +{ "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.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780942 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779297 ] } } +, +{ "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.441533, 37.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.775074 ] } } +, +{ "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.441275, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774735 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778161 ] } } +, +{ "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.436469, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.778652 ] } } +, +{ "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.434194, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771241 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771783 ] } } +, +{ "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.452862, 37.769341 ] } } +, +{ "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.453356, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766423 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769612 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "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.452948, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452605, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449815, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769951 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.770325 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767271 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770359 ] } } +, +{ "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.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447798, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.763031 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 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.443721, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763743 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449000, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753632 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760927 ] } } +, +{ "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.446640, 37.760944 ] } } +, +{ "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.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761809 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.760249 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759808 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757806 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444494, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "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.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766508 ] } } +, +{ "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.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765372 ] } } +, +{ "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.437499, 37.762420 ] } } +, +{ "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.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769409 ] } } +, +{ "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.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.765626 ] } } +, +{ "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.435267, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.762522 ] } } +, +{ "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.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441103, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 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.438056, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757568 ] } } +, +{ "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.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753531 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.754379 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760961 ] } } +, +{ "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.434924, 37.759400 ] } } +, +{ "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.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756109 ] } } +, +{ "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.434494, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474105, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748848 ] } } +, +{ "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.473719, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749052 ] } } +, +{ "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.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748882 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741213 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743079 ] } } +, +{ "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.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470200, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736393 ] } } +, +{ "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.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468483, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466123, 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.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740771 ] } } +, +{ "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.468998, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739855 ] } } +, +{ "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.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461360, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 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.455866, 37.753090 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454407, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458827, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.746031 ] } } +, +{ "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.457111, 37.745387 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455609, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453849, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460845, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739210 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744165 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743486 ] } } +, +{ "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.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453806, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.735053 ] } } +, +{ "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.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734323 ] } } +, +{ "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.471466, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731167 ] } } +, +{ "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.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469599, 37.734866 ] } } +, +{ "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.466381, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.734866 ] } } +, +{ "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.465522, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467582, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721119 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721255 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "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.474921, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475393, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.721493 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727263 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719761 ] } } +, +{ "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.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733712 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719999 ] } } +, +{ "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.461338, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458355, 37.724276 ] } } +, +{ "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.454236, 37.723462 ] } } +, +{ "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.459085, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "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.456059, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751291 ] } } +, +{ "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.452047, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451918, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451317, 37.745013 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749968 ] } } +, +{ "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.447927, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746846 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747151 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746710 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 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.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450373, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738192 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.741399 ] } } +, +{ "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.447755, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736852 ] } } +, +{ "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.440760, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749086 ] } } +, +{ "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.440932, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436554, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752784 ] } } +, +{ "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.434065, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436082, 37.747864 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.746303 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746269 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "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.738294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738684 ] } } +, +{ "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": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.736241 ] } } +, +{ "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.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734357 ] } } +, +{ "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.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 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.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452304, 37.727637 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "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.449172, 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.448785, 37.729809 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "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.731642 ] } } +, +{ "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.444623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723054 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "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.451789, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720644 ] } } +, +{ "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.449987, 37.722138 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720916 ] } } +, +{ "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.446232, 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.446768, 37.720712 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720440 ] } } +, +{ "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.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720644 ] } } +, +{ "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.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "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.444408, 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.445266, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "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.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "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": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "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.442541, 37.725753 ] } } +, +{ "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.727161 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "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": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.723835 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724310 ] } } +, +{ "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.434666, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.726177 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723971 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.722392 ] } } +, +{ "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.432971, 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.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761097 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.743554 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "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.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.718438 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477453, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718064 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717759 ] } } +, +{ "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.456081, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.717742 ] } } +, +{ "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.448614, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.717674 ] } } +, +{ "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.430139, 37.718183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514961, 37.831802 ] } } +, +{ "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.502429, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833158 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829531 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803969 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792236 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480500, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 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/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806580 ] } } +, +{ "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 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.467089, 37.801799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466938, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460372, 37.798543 ] } } +, +{ "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.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 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.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802307 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798272 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455008, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453420, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799137 ] } } +, +{ "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.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "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.804562 ] } } +, +{ "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.443442, 37.803664 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800985 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451532, 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.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447412, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441103, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439687, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.799306 ] } } +, +{ "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.437155, 37.796882 ] } } +, +{ "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.436812, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802409 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804884 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "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.437069, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432606, 37.797526 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442005, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438700, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.791575 ] } } +, +{ "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.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "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.794135 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435095, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791727 ] } } +, +{ "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.433958, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786911 ] } } +, +{ "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.448528, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788064 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.428980, 37.719711 ] } } +, +{ "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.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.718964 ] } } +, +{ "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 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 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.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.719778 ] } } +, +{ "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.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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 & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431147, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428358, 37.717487 ] } } +, +{ "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.711750 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711885 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718302 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710731 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710052 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 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.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.711631 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715043 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411234, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.711682 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.710986 ] } } +, +{ "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.712259 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710595 ] } } +, +{ "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.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709882 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.708219 ] } } +, +{ "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.418251, 37.707913 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "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.412951, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "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.405741, 37.716604 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "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.715348 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.713345 ] } } +, +{ "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.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711716 ] } } +, +{ "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.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709916 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "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.404969, 37.713226 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716299 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.714805 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "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.402008, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712463 ] } } +, +{ "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.402394, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402437, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712021 ] } } +, +{ "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.398961, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "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.405076, 37.708847 ] } } +, +{ "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.405269, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397244, 37.711223 ] } } +, +{ "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.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.711257 ] } } +, +{ "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.389219, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714398 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712802 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.432842, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785826 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783994 ] } } +, +{ "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.432349, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431705, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "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.767526 ] } } +, +{ "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.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762658 ] } } +, +{ "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.432005, 37.751393 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.748271 ] } } +, +{ "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.432349, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729605 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 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.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.789370 ] } } +, +{ "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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 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.408659, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "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.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785046 ] } } +, +{ "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.428958, 37.781926 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786131 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "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.421448, 37.786589 ] } } +, +{ "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.422907, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785792 ] } } +, +{ "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.784673 ] } } +, +{ "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 & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783214 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431576, 37.775854 ] } } +, +{ "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.430847, 37.775820 ] } } +, +{ "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.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426727, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426341, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772156 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425225, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776905 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 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 ] } } +, +{ "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.770969 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.771783 ] } } +, +{ "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.419989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "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": "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.419174, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787250 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782299 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779704 ] } } +, +{ "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": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415440, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785555 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414281, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781078 ] } } +, +{ "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.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780365 ] } } +, +{ "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.409904, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781179 ] } } +, +{ "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.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778703 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.777296 ] } } +, +{ "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.778398 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 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.419388, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777720 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775956 ] } } +, +{ "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.419260, 37.775040 ] } } +, +{ "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.418487, 37.773005 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774582 ] } } +, +{ "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.774226 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415011, 37.778686 ] } } +, +{ "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.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776227 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 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.412651, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429945, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769510 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767679 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767204 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "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.431233, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430718, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.764744 ] } } +, +{ "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.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.768391 ] } } +, +{ "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.766797 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421792, 37.763099 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 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.427928, 37.758281 ] } } +, +{ "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.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.426941, 37.756652 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.761436 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759875 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758756 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757161 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755566 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753412 ] } } +, +{ "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.419946, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "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.419689, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765270 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763845 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.769816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.769680 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758179 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761877 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 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.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.759333 ] } } +, +{ "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.414496, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786335 ] } } +, +{ "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.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.784401 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786606 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.785775 ] } } +, +{ "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.405913, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785860 ] } } +, +{ "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.404282, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.782112 ] } } +, +{ "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.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.782604 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "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.401578, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403939, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399046, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398789, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.783045 ] } } +, +{ "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.403467, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782163 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774395 ] } } +, +{ "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.402158, 37.778924 ] } } +, +{ "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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401965, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771715 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785758 ] } } +, +{ "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.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391965, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389562, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777279 ] } } +, +{ "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.395141, 37.777126 ] } } +, +{ "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.394755, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776295 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "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.393038, 37.778737 ] } } +, +{ "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.392824, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.776193 ] } } +, +{ "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.389734, 37.773005 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771173 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.767339 ] } } +, +{ "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.765711 ] } } +, +{ "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": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404454, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762216 ] } } +, +{ "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": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767475 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.764829 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764829 ] } } +, +{ "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.402608, 37.766016 ] } } +, +{ "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.402694, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401536, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763574 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399304, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "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": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406857, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754311 ] } } +, +{ "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.404068, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "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.402179, 37.759451 ] } } +, +{ "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 & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "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.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753395 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.766508 ] } } +, +{ "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.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.762590 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.762708 ] } } +, +{ "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.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769731 ] } } +, +{ "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": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766593 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389004, 37.767204 ] } } +, +{ "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.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388961, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762997 ] } } +, +{ "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.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759875 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396472, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.760147 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "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.395463, 37.760045 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395141, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.757467 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.754820 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753565 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754718 ] } } +, +{ "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.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393982, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760554 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388575, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758043 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.758026 ] } } +, +{ "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.755024 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755702 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755295 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749391 ] } } +, +{ "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.431490, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746540 ] } } +, +{ "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.431190, 37.744946 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430804, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426598, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.742231 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736665 ] } } +, +{ "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.428958, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427585, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.743826 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739821 ] } } +, +{ "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.424324, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739007 ] } } +, +{ "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.424216, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "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": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750680 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749018 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416084, 37.749119 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.748068 ] } } +, +{ "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.418187, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413895, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748356 ] } } +, +{ "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.413595, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.748407 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748203 ] } } +, +{ "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.409775, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744301 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419989, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "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.416599, 37.739041 ] } } +, +{ "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.413166, 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.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.741247 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "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.413487, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737174 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739584 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735647 ] } } +, +{ "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.431340, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428014, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429731, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.728621 ] } } +, +{ "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.428808, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424710, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728723 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723156 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.724005 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "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.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427628, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725091 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423251, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.725600 ] } } +, +{ "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.425783, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "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.415698, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "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.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416127, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "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.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 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.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414410, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718913 ] } } +, +{ "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.414153, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723122 ] } } +, +{ "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.412393, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.753073 ] } } +, +{ "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.409089, 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.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408745, 37.749527 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 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.402244, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.750850 ] } } +, +{ "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.400162, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 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.742876 ] } } +, +{ "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.405248, 37.743334 ] } } +, +{ "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.406707, 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.739685 ] } } +, +{ "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 & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737955 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "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.400463, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739567 ] } } +, +{ "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.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751291 ] } } +, +{ "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.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396901, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747355 ] } } +, +{ "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.393939, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394712, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738226 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.737174 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736224 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394111, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 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.392931, 37.740704 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "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.391429, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738090 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391665, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388918, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732185 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733067 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.728044 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.727331 ] } } +, +{ "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.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "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.401085, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.731913 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 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.403553, 37.727331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "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.401021, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.726550 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.723631 ] } } +, +{ "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": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "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.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "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.401879, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723563 ] } } +, +{ "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.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.395570, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.730997 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735036 ] } } +, +{ "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.392094, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391579, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391365, 37.732422 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731710 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389047, 37.732898 ] } } +, +{ "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.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729232 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725498 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724174 ] } } +, +{ "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.398446, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "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.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722647 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721425 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 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.391472, 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.389605, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386901, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387674, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752818 ] } } +, +{ "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.387588, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748950 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746031 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745862 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746065 ] } } +, +{ "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.387159, 37.741416 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384455, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.738973 ] } } +, +{ "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.382653, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382824, 37.739719 ] } } +, +{ "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.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381022, 37.738633 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737683 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387373, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387331, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.732592 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386000, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383339, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729571 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383597, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382696, 37.730165 ] } } +, +{ "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.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734187 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382138, 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.380035, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731642 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730590 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380207, 37.727993 ] } } +, +{ "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.377031, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726126 ] } } +, +{ "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.375615, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374499, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727365 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "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.428358, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718302 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805291 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792728 ] } } +, +{ "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.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432520, 37.789998 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.806173 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } +, +{ "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.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.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "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.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431490, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801833 ] } } +, +{ "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.426233, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800951 ] } } +, +{ "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.805122 ] } } +, +{ "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 & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425010, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423508, 37.805257 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423809, 37.803393 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "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.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798815 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 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.429516, 37.793152 ] } } +, +{ "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.426212, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427156, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "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.424624, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.796085 ] } } +, +{ "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.422907, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 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.421556, 37.795288 ] } } +, +{ "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": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793830 ] } } +, +{ "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.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794203 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 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.791151 ] } } +, +{ "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.422307, 37.791388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790455 ] } } +, +{ "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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420805, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789523 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 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.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.800222 ] } } +, +{ "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.419174, 37.800188 ] } } +, +{ "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.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799696 ] } } +, +{ "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.414968, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803426 ] } } +, +{ "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.413659, 37.802613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802104 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.802782 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "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.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800917 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.800510 ] } } +, +{ "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.409947, 37.800426 ] } } +, +{ "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.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796509 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795390 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418015, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418058, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.793830 ] } } +, +{ "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.416041, 37.792965 ] } } +, +{ "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.420547, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790879 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.790913 ] } } +, +{ "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": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.789167 ] } } +, +{ "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.415311, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414925, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795051 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794271 ] } } +, +{ "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.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796390 ] } } +, +{ "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.411535, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794644 ] } } +, +{ "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.411363, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792405 ] } } +, +{ "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.412629, 37.791558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.806105 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807360 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.803291 ] } } +, +{ "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.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803020 ] } } +, +{ "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.406471, 37.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408617, 37.797204 ] } } +, +{ "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.797865 ] } } +, +{ "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.405977, 37.800917 ] } } +, +{ "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.406900, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797340 ] } } +, +{ "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.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.805156 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402952, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802172 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "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.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403595, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797560 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798543 ] } } +, +{ "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.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408273, 37.796255 ] } } +, +{ "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.409647, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.793050 ] } } +, +{ "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.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.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796136 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.794712 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792507 ] } } +, +{ "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.404368, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "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.408917, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.408316, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406943, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789828 ] } } +, +{ "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.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792778 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794033 ] } } +, +{ "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.401321, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400119, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791015 ] } } +, +{ "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.402136, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789760 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788217 ] } } +, +{ "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.402501, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "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.399776, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401321, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.788946 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798984 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.799561 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.799086 ] } } +, +{ "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.396171, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797085 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797221 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795424 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397544, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.793542 ] } } +, +{ "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.396643, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.793016 ] } } +, +{ "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.395184, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795017 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795118 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793660 ] } } +, +{ "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.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794237 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.794067 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393425, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.793253 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793219 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791659 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "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.396343, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395484, 37.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.792405 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789964 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789726 ] } } +, +{ "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.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.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792694 ] } } +, +{ "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.392566, 37.791185 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391880, 37.789285 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390120, 37.791083 ] } } +, +{ "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.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388790, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789692 ] } } +, +{ "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.377417, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829836 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375658, 37.824480 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824175 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "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.823531 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 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.823633 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825328 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366345, 37.820006 ] } } +, +{ "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": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813157 ] } } +, +{ "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.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822243 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364843, 37.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363384, 37.810513 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419903, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787895 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403381, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787759 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.787878 ] } } +, +{ "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.394197, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.786742 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832387 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831836 ] } } +, +{ "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.527256, 37.832590 ] } } +, +{ "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.523458, 37.831667 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829065 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825040 ] } } +, +{ "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.830379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523233, 37.831421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.483225, 37.718616 ] } } +, +{ "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.475640, 37.719108 ] } } +, +{ "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.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497666, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716536 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496507, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485124, 37.714780 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716341 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711537 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485521, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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.480199, 37.714601 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480232, 37.714491 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477442, 37.717496 ] } } +, +{ "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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715849 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715985 ] } } +, +{ "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.709135 ] } } +, +{ "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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 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.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "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.504457, 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.503577, 37.753132 ] } } +, +{ "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.507011, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745446 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506710, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747465 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504876, 37.747431 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.747296 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745599 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505047, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745429 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.501947, 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.747686 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497634, 37.747635 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504843, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504672, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504715, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504500, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504586, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.738150 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504414, 37.739830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505316, 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.504275, 37.737980 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504361, 37.736130 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502612, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502354, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500209, 37.742027 ] } } +, +{ "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.498063, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735570 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735401 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503417, 37.735604 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500756, 37.735019 ] } } +, +{ "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.734136 ] } } +, +{ "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.499222, 37.731608 ] } } +, +{ "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.726763 ] } } +, +{ "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.500037, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718743 ] } } +, +{ "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.495134, 37.753302 ] } } +, +{ "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.495027, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495177, 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.494876, 37.749569 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747584 ] } } +, +{ "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.495370, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747771 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493106, 37.747966 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747838 ] } } +, +{ "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.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490960, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491218, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748008 ] } } +, +{ "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.487935, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486926, 37.748127 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486669, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487677, 37.746167 ] } } +, +{ "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.743987 ] } } +, +{ "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.494651, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742316 ] } } +, +{ "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.492967, 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.494394, 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.494286, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494093, 37.738387 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494158, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493922, 37.736546 ] } } +, +{ "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.489759, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487656, 37.744513 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487570, 37.744275 ] } } +, +{ "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.487345, 37.742596 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487624, 37.742468 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487398, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487227, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487141, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485607, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484781, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484587, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483450, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748466 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748364 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 37.748551 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479438, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742545 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485220, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483332, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742740 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480457, 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.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "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.496829, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496582, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493793, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733738 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493460, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493685, 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.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493664, 37.729809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.734145 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 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.489265, 37.734247 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483965, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734561 ] } } +, +{ "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.486411, 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.480071, 37.734654 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479631, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734756 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.728036 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728002 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478493, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726067 ] } } +, +{ "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.484899, 37.724234 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727128 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726983 ] } } +, +{ "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.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483064, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482549, 37.721841 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483085, 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.483225, 37.718616 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.720737 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725956 ] } } +, +{ "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.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "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.480907, 37.720687 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719634 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.719609 ] } } +, +{ "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.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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 & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.718429 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 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" }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509950, 37.779916 ] } } +, +{ "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.779780 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512987, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512053, 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.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510251, 37.775014 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.773327 ] } } +, +{ "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.773658 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509886, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510798, 37.771427 ] } } +, +{ "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.508481, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507451, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507397, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779746 ] } } +, +{ "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.504243, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779560 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784987 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 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.779051 ] } } +, +{ "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.503846, 37.775354 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503620, 37.775489 ] } } +, +{ "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": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773539 ] } } +, +{ "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.771486 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505680, 37.773581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771597 ] } } +, +{ "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.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502784, 37.779153 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775642 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 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.500348, 37.771885 ] } } +, +{ "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.499919, 37.771792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510294, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510465, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510058, 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.509210, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "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.764193 ] } } +, +{ "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.506120, 37.764040 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506152, 37.762378 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505981, 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.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508008, 37.760274 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506024, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760495 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506067, 37.760393 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505852, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505895, 37.758663 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505723, 37.758493 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756788 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754930 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754761 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502848, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502590, 37.760647 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499372, 37.760775 ] } } +, +{ "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.499146, 37.760647 ] } } +, +{ "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.496411, 37.779678 ] } } +, +{ "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.494404, 37.781646 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492344, 37.782002 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781747 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781510 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493364, 37.781544 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493235, 37.779746 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493407, 37.779577 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492301, 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.490520, 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.490617, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490070, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490199, 37.779729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489973, 37.779967 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783664 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781858 ] } } +, +{ "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.488053, 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.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493256, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493085, 37.777694 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494587, 37.775905 ] } } +, +{ "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.496797, 37.771927 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496346, 37.772080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771978 ] } } +, +{ "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.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777745 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491958, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776032 ] } } +, +{ "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.489920, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776227 ] } } +, +{ "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.489630, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489415, 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.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487270, 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.485145, 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.485296, 37.783816 ] } } +, +{ "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.784011 ] } } +, +{ "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.484856, 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.481669, 37.784105 ] } } +, +{ "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.484984, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484716, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.780255 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.779984 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779933 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483675, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481787, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481530, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482699, 37.780085 ] } } +, +{ "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.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478451, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780459 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 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.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484695, 37.778288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.778059 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484566, 37.776422 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484373, 37.776193 ] } } +, +{ "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": "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.484233, 37.774327 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772606 ] } } +, +{ "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.484083, 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.481347, 37.772767 ] } } +, +{ "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.478139, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477914, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480618, 37.772665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479180, 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.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 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.495381, 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.494715, 37.764761 ] } } +, +{ "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.764736 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764888 ] } } +, +{ "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.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760834 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.760919 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759138 ] } } +, +{ "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.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 37.761071 ] } } +, +{ "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.495595, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757034 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495466, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495273, 37.755168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 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.492441, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492656, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489737, 37.761216 ] } } +, +{ "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.486765, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753488 ] } } +, +{ "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.489458, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753700 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765227 ] } } +, +{ "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.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481616, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763141 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480382, 37.765194 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 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.480274, 37.763684 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477614, 37.765533 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477410, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.765550 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765219 ] } } +, +{ "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.763438 ] } } +, +{ "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.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761614 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.761580 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.759740 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486004, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485178, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483858, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754048 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483021, 37.753887 ] } } +, +{ "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.480114, 37.761462 ] } } +, +{ "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": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477120, 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.476830, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.760155 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759952 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476541, 37.757865 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756016 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755906 ] } } +, +{ "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.479620, 37.754345 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756228 ] } } +, +{ "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.506367, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752894 ] } } +, +{ "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.504457, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503577, 37.753132 ] } } +, +{ "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.500176, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498857, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498020, 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.495134, 37.753302 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "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.773055 ] } } +, +{ "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.765465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792227 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482270, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480929, 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.807470 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485145, 37.787539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515390, 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.508727, 37.832963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502419, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494029, 37.833887 ] } } +, +{ "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.494018, 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.483836, 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.483557, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.832844 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484030, 37.829523 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.829446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "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.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 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.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474438, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718056 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472979, 37.717326 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474588, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474449, 37.716019 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715221 ] } } +, +{ "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.473075, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472389, 37.717750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717377 ] } } +, +{ "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.716206 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471917, 37.714635 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470254, 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.474481, 37.713591 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714075 ] } } +, +{ "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.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.713108 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710714 ] } } +, +{ "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.470039, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714321 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466992, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469267, 37.712488 ] } } +, +{ "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.469460, 37.710366 ] } } +, +{ "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.467228, 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.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466906, 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.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711648 ] } } +, +{ "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.705766 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707056 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714355 ] } } +, +{ "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.462593, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713184 ] } } +, +{ "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.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713159 ] } } +, +{ "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.459139, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460276, 37.710137 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456070, 37.717733 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.716435 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715866 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714848 ] } } +, +{ "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.711495 ] } } +, +{ "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.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713286 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713345 ] } } +, +{ "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.456081, 37.711554 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711707 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455952, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710383 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705986 ] } } +, +{ "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.460684, 37.706156 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459203, 37.706615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706827 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 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.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 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.450341, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716087 ] } } +, +{ "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.713956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448345, 37.710485 ] } } +, +{ "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.442659, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 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.445695, 37.711724 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 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.452208, 37.708898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450877, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.717665 ] } } +, +{ "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.441179, 37.716511 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440792, 37.716647 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440406, 37.717156 ] } } +, +{ "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.716418 ] } } +, +{ "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.439623, 37.715679 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439312, 37.715722 ] } } +, +{ "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.437595, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712463 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710213 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714457 ] } } +, +{ "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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713490 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.714033 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709976 ] } } +, +{ "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.434881, 37.710188 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713337 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 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 & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 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.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.709645 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434591, 37.709509 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708974 ] } } +, +{ "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.432510, 37.709636 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "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.710570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "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.476037, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750205 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748585 ] } } +, +{ "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.748305 ] } } +, +{ "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.475779, 37.746676 ] } } +, +{ "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.475908, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730004 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728791 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475747, 37.726890 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475640, 37.719108 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 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.473097, 37.752402 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.750545 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471970, 37.750816 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474095, 37.748814 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.748840 ] } } +, +{ "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.472990, 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.746753 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745115 ] } } +, +{ "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.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470747, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470500, 37.745081 ] } } +, +{ "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.749043 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.749332 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748840 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748992 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468569, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467057, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743317 ] } } +, +{ "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.475436, 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.471412, 37.743071 ] } } +, +{ "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.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.471198, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470189, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739015 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 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.475157, 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.736393 ] } } +, +{ "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.741442 ] } } +, +{ "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.741179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741102 ] } } +, +{ "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.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465866, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465855, 37.740899 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740950 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465726, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465533, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465919, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740797 ] } } +, +{ "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.468988, 37.738065 ] } } +, +{ "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.466981, 37.739847 ] } } +, +{ "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.466778, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465050, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465276, 37.739558 ] } } +, +{ "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.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458398, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454396, 37.751351 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.748280 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458817, 37.747906 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747262 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747117 ] } } +, +{ "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.457100, 37.745378 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747805 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455598, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453839, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.745701 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740407 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463688, 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.740237 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739380 ] } } +, +{ "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.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.461467, 37.737751 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456639, 37.744157 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456414, 37.744004 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741628 ] } } +, +{ "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.455781, 37.743478 ] } } +, +{ "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.742876 ] } } +, +{ "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.736699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734722 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474502, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732796 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732465 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732126 ] } } +, +{ "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.735044 ] } } +, +{ "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.471627, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734315 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735486 ] } } +, +{ "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.471455, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471713, 37.731633 ] } } +, +{ "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.474728, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474545, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474374, 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.731243 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471691, 37.730955 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469803, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469589, 37.734866 ] } } +, +{ "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.468076, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466370, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.734866 ] } } +, +{ "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.465512, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469481, 37.729953 ] } } +, +{ "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.467883, 37.728392 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467571, 37.728290 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727263 ] } } +, +{ "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.474856, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475060, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721204 ] } } +, +{ "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.475114, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720984 ] } } +, +{ "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.475575, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474910, 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.474588, 37.719532 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472721, 37.721493 ] } } +, +{ "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.471745, 37.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471541, 37.719719 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727204 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469739, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719753 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719770 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719617 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463967, 37.732041 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460812, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735316 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 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.461864, 37.729979 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 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.458967, 37.733610 ] } } +, +{ "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.458516, 37.732618 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732244 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457658, 37.732092 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.730700 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457540, 37.731116 ] } } +, +{ "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 & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464074, 37.726016 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461392, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724964 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719795 ] } } +, +{ "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.461338, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461113, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460126, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458087, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458313, 37.724268 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454225, 37.723453 ] } } +, +{ "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.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458066, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457036, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456242, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720075 ] } } +, +{ "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.452036, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450341, 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.452390, 37.745336 ] } } +, +{ "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.451907, 37.745327 ] } } +, +{ "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.451317, 37.745005 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745938 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446092, 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.446586, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750417 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443721, 37.751690 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749128 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 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.750706 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749959 ] } } +, +{ "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.447927, 37.746464 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444912, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.746837 ] } } +, +{ "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.443968, 37.748975 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443968, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.746702 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443217, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443045, 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.451189, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450684, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450663, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 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.449225, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740831 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449182, 37.740712 ] } } +, +{ "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.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451500, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740203 ] } } +, +{ "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.740186 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450362, 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.741391 ] } } +, +{ "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.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447745, 37.739898 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.738973 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 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.736843 ] } } +, +{ "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.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442466, 37.752301 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442616, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749077 ] } } +, +{ "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.440921, 37.749315 ] } } +, +{ "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.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438368, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.748526 ] } } +, +{ "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.440299, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 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.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751232 ] } } +, +{ "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.749493 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "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.434055, 37.751893 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751367 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433840, 37.749603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.748856 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 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.435846, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.746294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746261 ] } } +, +{ "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.435610, 37.744691 ] } } +, +{ "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.433636, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743597 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743631 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435771, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743257 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.743088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435750, 37.741594 ] } } +, +{ "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.435889, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436908, 37.738608 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738676 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436308, 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.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738896 ] } } +, +{ "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.738269 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737318 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 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.434226, 37.740195 ] } } +, +{ "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.434076, 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.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734196 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448957, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.732991 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.731701 ] } } +, +{ "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": "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.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727874 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452294, 37.727628 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285, 37.728426 ] } } +, +{ "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.449172, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.729801 ] } } +, +{ "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.446468, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446328, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.733992 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733958 ] } } +, +{ "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.445588, 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.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.731650 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731515 ] } } +, +{ "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.724107 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453216, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.723546 ] } } +, +{ "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.452658, 37.723470 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451457, 37.723046 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451189, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723029 ] } } +, +{ "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.451779, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451650, 37.719787 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720636 ] } } +, +{ "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.450287, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.722129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449300, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449354, 37.721637 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720398 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.723012 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444419, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447230, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.720992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720967 ] } } +, +{ "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.720907 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446479, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 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.446768, 37.720704 ] } } +, +{ "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.446897, 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.447144, 37.719863 ] } } +, +{ "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.447616, 37.719397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446586, 37.720636 ] } } +, +{ "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.720474 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445052, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444977, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 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.445266, 37.720075 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443839, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735010 ] } } +, +{ "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.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731676 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731515 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729045 ] } } +, +{ "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.728816 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.727747 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730386 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730318 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.731396 ] } } +, +{ "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.733933 ] } } +, +{ "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.433840, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "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.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.733602 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433861, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433422, 37.732533 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731328 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729801 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729597 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725880 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442380, 37.725676 ] } } +, +{ "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.441329, 37.723368 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441243, 37.723266 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723674 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 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.721289 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435900, 37.723826 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.723377 ] } } +, +{ "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.435771, 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.434763, 37.724590 ] } } +, +{ "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.434816, 37.724548 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.723945 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435685, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433518, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433583, 37.726169 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723962 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436340, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434570, 37.722384 ] } } +, +{ "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.721620 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432681, 37.721646 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "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.431308, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431222, 37.728663 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.718056 ] } } +, +{ "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.456070, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448603, 37.718285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.776634 ] } } +, +{ "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.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476197, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475511, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473258, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.784503 ] } } +, +{ "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.470855, 37.784588 ] } } +, +{ "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.473977, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 37.782494 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780713 ] } } +, +{ "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.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.780577 ] } } +, +{ "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.470608, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784673 ] } } +, +{ "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.467046, 37.784749 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466713, 37.784469 ] } } +, +{ "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.464718, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469009, 37.782807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782706 ] } } +, +{ "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.782901 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465426, 37.783138 ] } } +, +{ "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.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.776795 ] } } +, +{ "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.471981, 37.776956 ] } } +, +{ "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.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773055 ] } } +, +{ "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.471917, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471992, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468398, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468172, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.777202 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775269 ] } } +, +{ "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.468398, 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.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773471 ] } } +, +{ "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.465748, 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.784681 ] } } +, +{ "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.785360 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785707 ] } } +, +{ "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.783223 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 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.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 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.464385, 37.780908 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464192, 37.780883 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459825, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781052 ] } } +, +{ "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.456843, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.785665 ] } } +, +{ "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.458860, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783867 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 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.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.783079 ] } } +, +{ "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.458956, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458699, 37.781154 ] } } +, +{ "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.455684, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464246, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464052, 37.779008 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775455 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461756, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464117, 37.773674 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463720, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463838, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773946 ] } } +, +{ "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.458870, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458527, 37.777482 ] } } +, +{ "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.455373, 37.777643 ] } } +, +{ "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.458516, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.774285 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454847, 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.454525, 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.772903 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 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.765465 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765719 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765821 ] } } +, +{ "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.470340, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770537 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770443 ] } } +, +{ "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.468719, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.766008 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766025 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466348, 37.765855 ] } } +, +{ "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.466520, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764294 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464610, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763803 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764108 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763921 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762140 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.762047 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761920 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.759307 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472786, 37.761852 ] } } +, +{ "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.472700, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.759138 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473687, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756304 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473129, 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.754116 ] } } +, +{ "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.470082, 37.758306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.758204 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468129, 37.758247 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467936, 37.758408 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.760410 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465962, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758544 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.758527 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 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.754812 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465554, 37.754642 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464288, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 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.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762403 ] } } +, +{ "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.461070, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460147, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460748, 37.762734 ] } } +, +{ "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.762530 ] } } +, +{ "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.765991 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764447 ] } } +, +{ "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.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.456521, 37.764939 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458752, 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.763726 ] } } +, +{ "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.454708, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454311, 37.764244 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.758612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463881, 37.758476 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758696 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461907, 37.757729 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463580, 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.463806, 37.754659 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463559, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756915 ] } } +, +{ "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.461091, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753768 ] } } +, +{ "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.456360, 37.755346 ] } } +, +{ "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.455523, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784028 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786716 ] } } +, +{ "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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.784376 ] } } +, +{ "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.784995 ] } } +, +{ "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.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449998, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.782036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787361 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.787386 ] } } +, +{ "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.446725, 37.785385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.785241 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446296, 37.784393 ] } } +, +{ "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.787742 ] } } +, +{ "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.443078, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447294, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 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.445803, 37.782714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 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.453291, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777762 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778101 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451371, 37.778016 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778356 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449601, 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.449300, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453130, 37.774913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452390, 37.774997 ] } } +, +{ "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.452766, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452508, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452519, 37.773064 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773259 ] } } +, +{ "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.449172, 37.773607 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449472, 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.447144, 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.446918, 37.777541 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445449, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777575 ] } } +, +{ "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.446586, 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.446285, 37.775752 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445256, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.778966 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443603, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777270 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.776948 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443432, 37.777101 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447573, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447315, 37.773742 ] } } +, +{ "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.774065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446522, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445685, 37.773954 ] } } +, +{ "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.445738, 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.774200 ] } } +, +{ "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.440728, 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.787005 ] } } +, +{ "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.439945, 37.785156 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785343 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439440, 37.785266 ] } } +, +{ "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.438089, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 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.779517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439376, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 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.439237, 37.781612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439076, 37.781815 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783630 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438818, 37.780501 ] } } +, +{ "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.780883 ] } } +, +{ "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.785801 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "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.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.433057, 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.432928, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.781086 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780933 ] } } +, +{ "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.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "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.779170 ] } } +, +{ "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.777448 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440170, 37.777525 ] } } +, +{ "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.438593, 37.777821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438518, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438303, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438067, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441264, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.770757 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770935 ] } } +, +{ "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.774726 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437874, 37.774896 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437413, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437359, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437381, 37.771300 ] } } +, +{ "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.436469, 37.775218 ] } } +, +{ "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.434452, 37.775472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.775421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771334 ] } } +, +{ "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.433861, 37.771605 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.771783 ] } } +, +{ "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.452852, 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.453474, 37.768332 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453345, 37.768247 ] } } +, +{ "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.766457 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450792, 37.769604 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450802, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450620, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769722 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768535 ] } } +, +{ "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.452937, 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": "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.452658, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451113, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.764608 ] } } +, +{ "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.765948 ] } } +, +{ "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.450137, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765567 ] } } +, +{ "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.764795 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449719, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769943 ] } } +, +{ "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.770257 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445427, 37.770316 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770096 ] } } +, +{ "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.447927, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 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.446479, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446285, 37.767161 ] } } +, +{ "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.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443560, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442960, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444826, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447788, 37.766296 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447766, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.765304 ] } } +, +{ "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.445878, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445953, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.763022 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442809, 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.443711, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442917, 37.763735 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448989, 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.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753624 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.760927 ] } } +, +{ "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.446640, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760868 ] } } +, +{ "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.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 37.758798 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445910, 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": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.761207 ] } } +, +{ "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.445084, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 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.443550, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443496, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444451, 37.759799 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758230 ] } } +, +{ "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.443432, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443281, 37.756415 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755354 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767738 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768671 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.766500 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.766856 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767170 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441028, 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.437499, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 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.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769400 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "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.767517 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.767407 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.765838 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449, 37.764278 ] } } +, +{ "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": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435235, 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.435396, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 37.762378 ] } } +, +{ "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.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763964 ] } } +, +{ "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.761716 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760495 ] } } +, +{ "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.438196, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438046, 37.759036 ] } } +, +{ "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.441157, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440900, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437853, 37.757568 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.757416 ] } } +, +{ "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.755821 ] } } +, +{ "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.435160, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434849, 37.760851 ] } } +, +{ "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.435975, 37.757679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.756101 ] } } +, +{ "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.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.472067, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465640, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455866, 37.753081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752877 ] } } +, +{ "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.752776 ] } } +, +{ "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.434323, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434162, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803960 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803766 ] } } +, +{ "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.807470 ] } } +, +{ "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": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472121, 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.466810, 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.801027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467314, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803053 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802909 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459139, 37.800137 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460362, 37.798535 ] } } +, +{ "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.458001, 37.803808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456821, 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.456789, 37.801638 ] } } +, +{ "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.456285, 37.803859 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454536, 37.803698 ] } } +, +{ "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.802307 ] } } +, +{ "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.456328, 37.801587 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.801434 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458999, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797899 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.797959 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797738 ] } } +, +{ "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.454740, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454107, 37.800756 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453946, 37.800536 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456306, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798264 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455105, 37.798255 ] } } +, +{ "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.799111 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452658, 37.799078 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.799128 ] } } +, +{ "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.450137, 37.798060 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804350 ] } } +, +{ "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.804562 ] } } +, +{ "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.443432, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802485 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444805, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802858 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447455, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800332 ] } } +, +{ "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.447144, 37.798425 ] } } +, +{ "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.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800977 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.800044 ] } } +, +{ "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.442863, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798671 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796712 ] } } +, +{ "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.795754 ] } } +, +{ "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.445320, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.790913 ] } } +, +{ "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.790718 ] } } +, +{ "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.447047, 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.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791193 ] } } +, +{ "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.803087 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441286, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.800273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800451 ] } } +, +{ "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.439430, 37.799298 ] } } +, +{ "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.437466, 37.800722 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796882 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804452 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.803554 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.802825 ] } } +, +{ "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.805427 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.804876 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433347, 37.803435 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805130 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433068, 37.801163 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801316 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436479, 37.800892 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800849 ] } } +, +{ "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.800951 ] } } +, +{ "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.797399 ] } } +, +{ "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.435589, 37.796975 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432595, 37.797518 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.796178 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438689, 37.796746 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 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.440900, 37.789972 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439247, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788522 ] } } +, +{ "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.436866, 37.795865 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794890 ] } } +, +{ "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.434849, 37.794160 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793813 ] } } +, +{ "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.433400, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 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.436329, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436115, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.791456 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434613, 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.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 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.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434108, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789582 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788938 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433926, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432510, 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.448528, 37.787496 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788031 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +, +{ "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.440728, 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.433572, 37.788056 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "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.427188, 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.427070, 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.718904 ] } } +, +{ "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.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.718828 ] } } +, +{ "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.432306, 37.715136 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 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.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432445, 37.709840 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.716698 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717563 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428358, 37.717487 ] } } +, +{ "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.710570 ] } } +, +{ "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.428197, 37.711877 ] } } +, +{ "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.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422789, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 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.422124, 37.713710 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713557 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421159, 37.713226 ] } } +, +{ "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.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423111, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708991 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712980 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419549, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.712607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.712420 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418691, 37.711860 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712030 ] } } +, +{ "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.414474, 37.718124 ] } } +, +{ "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.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.715034 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 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.412640, 37.712734 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412790, 37.711062 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.710986 ] } } +, +{ "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.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710595 ] } } +, +{ "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.710366 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709874 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420365, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 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.418240, 37.707905 ] } } +, +{ "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.707141 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 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.412940, 37.707098 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.706530 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709068 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.708261 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407190, 37.717827 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717292 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716664 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405216, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717054 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715348 ] } } +, +{ "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.409056, 37.713846 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407157, 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.408971, 37.711707 ] } } +, +{ "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.409528, 37.710010 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.709950 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408541, 37.709908 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.711495 ] } } +, +{ "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.404969, 37.713218 ] } } +, +{ "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.405784, 37.711902 ] } } +, +{ "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.716876 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.716290 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716104 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 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.399937, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.716358 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716273 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.714797 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714678 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714814 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714975 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.713846 ] } } +, +{ "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.401997, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712242 ] } } +, +{ "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.402383, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402426, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 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.400688, 37.712021 ] } } +, +{ "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.398961, 37.711622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 37.709865 ] } } +, +{ "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.406696, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708974 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.708949 ] } } +, +{ "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.405258, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711198 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397233, 37.711215 ] } } +, +{ "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.710977 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394766, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.711249 ] } } +, +{ "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.389219, 37.717020 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "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.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392899, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751384 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 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.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431780, 37.748271 ] } } +, +{ "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.432338, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734586 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 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.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429774, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429559, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427553, 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.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427360, 37.751597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427124, 37.749187 ] } } +, +{ "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.431490, 37.746685 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 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.431179, 37.744937 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427081, 37.746990 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426898, 37.746787 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425321, 37.751910 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751792 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.752046 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751868 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.743546 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431051, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 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.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742816 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426630, 37.742646 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742137 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 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.431018, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 37.736461 ] } } +, +{ "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.427499, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.737115 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742027 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425826, 37.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.742171 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421137, 37.743817 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741017 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742443 ] } } +, +{ "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.425504, 37.739626 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424291, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424163, 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.424088, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738998 ] } } +, +{ "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.424206, 37.737064 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 37.737454 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424334, 37.736215 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420558, 37.752182 ] } } +, +{ "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.752326 ] } } +, +{ "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.751970 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420450, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.750282 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418498, 37.750672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 37.752318 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416180, 37.752496 ] } } +, +{ "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.749009 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416073, 37.749111 ] } } +, +{ "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.748000 ] } } +, +{ "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.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.748577 ] } } +, +{ "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.418090, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418830, 37.747117 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420086, 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.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.415762, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414249, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414035, 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.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414056, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413884, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413863, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413713, 37.749230 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413799, 37.748483 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748347 ] } } +, +{ "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.748381 ] } } +, +{ "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.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.746871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.745327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411910, 37.748407 ] } } +, +{ "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.748347 ] } } +, +{ "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.409765, 37.748237 ] } } +, +{ "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.419978, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419699, 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.418466, 37.739304 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 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.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410473, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741459 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.741238 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409786, 37.741832 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.738837 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413670, 37.739007 ] } } +, +{ "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.413380, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737166 ] } } +, +{ "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.413530, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739575 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411417, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739796 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430289, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735638 ] } } +, +{ "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.431329, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732176 ] } } +, +{ "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.733347 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429656, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429720, 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.431308, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431222, 37.728663 ] } } +, +{ "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.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 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.424710, 37.735621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.735918 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422575, 37.735248 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735078 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728714 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730955 ] } } +, +{ "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.422575, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430600, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723996 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.723114 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 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.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 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": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427628, 37.721365 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427768, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426480, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.720907 ] } } +, +{ "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.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426180, 37.720415 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427188, 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.427070, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724658 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424377, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424227, 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.423251, 37.725201 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 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.425890, 37.720525 ] } } +, +{ "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.425804, 37.719312 ] } } +, +{ "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.419732, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735061 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.732295 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417017, 37.735647 ] } } +, +{ "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.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417768, 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.415268, 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.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416116, 37.729020 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734875 ] } } +, +{ "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.413648, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 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.413595, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413927, 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.734917 ] } } +, +{ "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.729851 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.729936 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414571, 37.727408 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414399, 37.727391 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410848, 37.730921 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.730972 ] } } +, +{ "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.420290, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726406 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718904 ] } } +, +{ "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.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.724998 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.722944 ] } } +, +{ "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.412533, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411578, 37.722842 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411267, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752521 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409078, 37.751308 ] } } +, +{ "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.408895, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408917, 37.749696 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408735, 37.749518 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 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.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 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.402233, 37.751893 ] } } +, +{ "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.750842 ] } } +, +{ "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.750723 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400151, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400033, 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.409410, 37.742867 ] } } +, +{ "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.405237, 37.743325 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405194, 37.742884 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406696, 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.739677 ] } } +, +{ "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.406771, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406546, 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.404175, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403349, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403080, 37.741908 ] } } +, +{ "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.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398821, 37.743902 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400452, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403735, 37.738795 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739134 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.739558 ] } } +, +{ "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.398896, 37.736368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.752385 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 37.752241 ] } } +, +{ "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.752250 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.751274 ] } } +, +{ "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.749035 ] } } +, +{ "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.749874 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396225, 37.750010 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.752504 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396268, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393929, 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.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392770, 37.752470 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394937, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394701, 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.738218 ] } } +, +{ "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.396729, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396375, 37.737166 ] } } +, +{ "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.394100, 37.736843 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736640 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390538, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390474, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740907 ] } } +, +{ "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.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "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.742629 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388157, 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.739762 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.738082 ] } } +, +{ "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.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391654, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "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": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388908, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740127 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389809, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389637, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737649 ] } } +, +{ "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.734255 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.732176 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733279 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404722, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733059 ] } } +, +{ "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.409003, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730114 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.728036 ] } } +, +{ "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.404518, 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.402576, 37.734170 ] } } +, +{ "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.401074, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400666, 37.735341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731905 ] } } +, +{ "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.403649, 37.727526 ] } } +, +{ "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.727747 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.728086 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.730378 ] } } +, +{ "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.401021, 37.729122 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729105 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408456, 37.726287 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 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.407469, 37.726678 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725227 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723496 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.723385 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408649, 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.407640, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.726915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720771 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726372 ] } } +, +{ "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.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.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.723563 ] } } +, +{ "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.723402 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.720933 ] } } +, +{ "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.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401160, 37.721450 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721484 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400430, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719057 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397630, 37.733305 ] } } +, +{ "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.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395560, 37.731803 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395281, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395409, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727925 ] } } +, +{ "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.735036 ] } } +, +{ "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.392663, 37.735036 ] } } +, +{ "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.392083, 37.735672 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735078 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390732, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390935, 37.734094 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734026 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.733856 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391568, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391354, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735418 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734501 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 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.390184, 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.389036, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732923 ] } } +, +{ "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.730445 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392856, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729223 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392641, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392598, 37.729240 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729207 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393028, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728086 ] } } +, +{ "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.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725676 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725490 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394208, 37.725303 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724166 ] } } +, +{ "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.395248, 37.723131 ] } } +, +{ "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.398435, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.722486 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720788 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397501, 37.718828 ] } } +, +{ "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.396718, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722638 ] } } +, +{ "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.722384 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394851, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.722036 ] } } +, +{ "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.727077 ] } } +, +{ "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.391461, 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.389594, 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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430128, 37.718174 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "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.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432338, 37.781739 ] } } +, +{ "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.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432145, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779865 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432081, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431694, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "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.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "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.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 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.429870, 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.431362, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431029, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428712, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.786937 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 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.785037 ] } } +, +{ "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.428948, 37.781926 ] } } +, +{ "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.782137 ] } } +, +{ "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.424989, 37.786131 ] } } +, +{ "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.785054 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786581 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422897, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785784 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785690 ] } } +, +{ "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.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784664 ] } } +, +{ "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 & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421180, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 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.425536, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.779695 ] } } +, +{ "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.423465, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783206 ] } } +, +{ "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.420719, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778864 ] } } +, +{ "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.431480, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775845 ] } } +, +{ "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.775812 ] } } +, +{ "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.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426716, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426330, 37.777389 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428282, 37.776269 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "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.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.772148 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430546, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430493, 37.772012 ] } } +, +{ "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.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 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.779390 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424957, 37.777567 ] } } +, +{ "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.423315, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423337, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423025, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421674, 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.425472, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773819 ] } } +, +{ "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.770961 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422532, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420965, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 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.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.787802 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419978, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.786920 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 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.420644, 37.785851 ] } } +, +{ "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.419163, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787055 ] } } +, +{ "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.416266, 37.787242 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.785088 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420601, 37.782867 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783189 ] } } +, +{ "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.419270, 37.782188 ] } } +, +{ "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.420150, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420332, 37.779695 ] } } +, +{ "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.419013, 37.780314 ] } } +, +{ "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.783359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417425, 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.782468 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.781697 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783486 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782629 ] } } +, +{ "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.417414, 37.780518 ] } } +, +{ "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.780577 ] } } +, +{ "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.415880, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.780789 ] } } +, +{ "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.414979, 37.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.786436 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786776 ] } } +, +{ "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.414539, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.785546 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.784715 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784885 ] } } +, +{ "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.412436, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786988 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.787174 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787217 ] } } +, +{ "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.409775, 37.786106 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785851 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411460, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410794, 37.784105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783689 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783045 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413090, 37.781078 ] } } +, +{ "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.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412618, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.783392 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410237, 37.782324 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781171 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412404, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419828, 37.778695 ] } } +, +{ "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.419753, 37.778194 ] } } +, +{ "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.778389 ] } } +, +{ "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": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.775218 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775311 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.775150 ] } } +, +{ "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.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416760, 37.778746 ] } } +, +{ "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.416245, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775947 ] } } +, +{ "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.419260, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.773318 ] } } +, +{ "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.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417328, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.774311 ] } } +, +{ "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.416899, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.773335 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415386, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } +, +{ "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.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777236 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.777245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776456 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778975 ] } } +, +{ "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.410516, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776227 ] } } +, +{ "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.414228, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771741 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.771597 ] } } +, +{ "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.412640, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 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.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429935, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 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.769477 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429141, 37.769468 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769307 ] } } +, +{ "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.431287, 37.767543 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429098, 37.767772 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } +, +{ "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": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.769790 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769434 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 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.428637, 37.767831 ] } } +, +{ "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.431018, 37.766288 ] } } +, +{ "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.431222, 37.765635 ] } } +, +{ "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.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.764464 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428529, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.764736 ] } } +, +{ "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.424978, 37.770571 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769807 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.770155 ] } } +, +{ "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.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766788 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423970, 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.764854 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765236 ] } } +, +{ "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.430471, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 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.758272 ] } } +, +{ "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.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757458 ] } } +, +{ "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.426931, 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.427757, 37.754608 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761394 ] } } +, +{ "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.761529 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.761767 ] } } +, +{ "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.761428 ] } } +, +{ "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.759867 ] } } +, +{ "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.758747 ] } } +, +{ "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.756618 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755558 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419935, 37.768628 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767806 ] } } +, +{ "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.766686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767144 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768467 ] } } +, +{ "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.419678, 37.765126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.765007 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 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.419356, 37.762641 ] } } +, +{ "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.417650, 37.765261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765406 ] } } +, +{ "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.765236 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.762123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763836 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770367 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 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.410913, 37.769112 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410816, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410687, 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.412983, 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.410548, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765575 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409818, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 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.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.761903 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761767 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.759808 ] } } +, +{ "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.419099, 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.417006, 37.758934 ] } } +, +{ "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.418873, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 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.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753437 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754286 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755736 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416470, 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.414786, 37.759002 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.758815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414796, 37.758764 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761877 ] } } +, +{ "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.410086, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409915, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409936, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.786326 ] } } +, +{ "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.409518, 37.785071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784274 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783918 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.784071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408413, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407962, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407790, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.784783 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784308 ] } } +, +{ "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.784088 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407705, 37.784206 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407318, 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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786648 ] } } +, +{ "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.404593, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406245, 37.785767 ] } } +, +{ "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.405902, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 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.404529, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783401 ] } } +, +{ "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.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.781196 ] } } +, +{ "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.406546, 37.782595 ] } } +, +{ "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.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787717 ] } } +, +{ "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.401578, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402083, 37.786352 ] } } +, +{ "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.403939, 37.784647 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399036, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400838, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.784953 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.784003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398778, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402555, 37.783036 ] } } +, +{ "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.403467, 37.780442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780391 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780679 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409228, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.776643 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404250, 37.777321 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408520, 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.407136, 37.772538 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772335 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408177, 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.405012, 37.774590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.774387 ] } } +, +{ "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.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402147, 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.401836, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 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.399958, 37.777957 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776456 ] } } +, +{ "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.401954, 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.399433, 37.773683 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399443, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.786606 ] } } +, +{ "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.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396729, 37.785631 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785750 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785521 ] } } +, +{ "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.396568, 37.785326 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784198 ] } } +, +{ "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.395023, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397684, 37.782443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782646 ] } } +, +{ "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.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393478, 37.782850 ] } } +, +{ "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.779568 ] } } +, +{ "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.392180, 37.786742 ] } } +, +{ "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.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "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.391955, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780832 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390689, 37.780628 ] } } +, +{ "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.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389948, 37.779806 ] } } +, +{ "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.389830, 37.779628 ] } } +, +{ "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.396654, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396611, 37.778313 ] } } +, +{ "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.396139, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397169, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397212, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394637, 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.395141, 37.777117 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777194 ] } } +, +{ "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.394905, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393907, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.776286 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776066 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772903 ] } } +, +{ "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.778729 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 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.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776193 ] } } +, +{ "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.389723, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772623 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389723, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771164 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.768264 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 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.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.407544, 37.764235 ] } } +, +{ "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.404701, 37.766042 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404443, 37.764566 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770163 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403156, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403048, 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.402920, 37.767467 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403628, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403477, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.766016 ] } } +, +{ "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.402683, 37.764871 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401718, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401460, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.763565 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402533, 37.763268 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399690, 37.766228 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399293, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401375, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407297, 37.761648 ] } } +, +{ "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.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759087 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404186, 37.762021 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404207, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406846, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757407 ] } } +, +{ "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.409496, 37.755728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754311 ] } } +, +{ "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.406911, 37.757492 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406610, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406760, 37.755880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753997 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.754303 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754421 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404068, 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.402920, 37.759680 ] } } +, +{ "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.402169, 37.759443 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.759596 ] } } +, +{ "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.759672 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758145 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.758103 ] } } +, +{ "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.756890 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 37.756177 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754455 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.754438 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401696, 37.754515 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.754336 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757441 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757305 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398864, 37.757195 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755914 ] } } +, +{ "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.400581, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397019, 37.766500 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.766406 ] } } +, +{ "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 & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397577, 37.762615 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397362, 37.762581 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395431, 37.762708 ] } } +, +{ "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.393478, 37.762836 ] } } +, +{ "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.391043, 37.770520 ] } } +, +{ "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.766771 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389294, 37.769722 ] } } +, +{ "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.389305, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389315, 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.389358, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766584 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767195 ] } } +, +{ "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.389187, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764396 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.764244 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762904 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388951, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762997 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762980 ] } } +, +{ "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.397480, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.761156 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398371, 37.759875 ] } } +, +{ "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.760138 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760088 ] } } +, +{ "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.396128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.760045 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395130, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398049, 37.757458 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397898, 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.398639, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753556 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754684 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754710 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396568, 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.395710, 37.756830 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757645 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755465 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753768 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391804, 37.757772 ] } } +, +{ "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.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760579 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388564, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390088, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390002, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 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": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.758018 ] } } +, +{ "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.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.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "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.414035, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412060, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752860 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 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.406696, 37.752996 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753259 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 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.386837, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805130 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797433 ] } } +, +{ "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.422092, 37.806351 ] } } +, +{ "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.420686, 37.806724 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805597 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.806690 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.806648 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805791 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805707 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.805808 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420279, 37.805639 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808326 ] } } +, +{ "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.417414, 37.806173 ] } } +, +{ "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.417597, 37.805495 ] } } +, +{ "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": "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.414249, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.808106 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410816, 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.412254, 37.807606 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412039, 37.806673 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806504 ] } } +, +{ "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.410601, 37.806885 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410387, 37.807046 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801697 ] } } +, +{ "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.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426223, 37.802036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.800578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800375 ] } } +, +{ "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.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427381, 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.425418, 37.805113 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425407, 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.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.805249 ] } } +, +{ "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.803384 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424914, 37.802435 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424849, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802587 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423390, 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.800485 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424248, 37.798586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798450 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.799010 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798806 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798688 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.797738 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 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.429506, 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.792550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 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.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 37.790532 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427510, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427145, 37.790684 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796416 ] } } +, +{ "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.423337, 37.796085 ] } } +, +{ "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.423133, 37.794907 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.794788 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 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.421545, 37.795280 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421480, 37.795118 ] } } +, +{ "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.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 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.794050 ] } } +, +{ "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.422607, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421738, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.793703 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794194 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.793499 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793194 ] } } +, +{ "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.791049 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 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.422296, 37.791380 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790447 ] } } +, +{ "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.791524 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790447 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790650 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420837, 37.790498 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789514 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421845, 37.788412 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420107, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.802918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419571, 37.801918 ] } } +, +{ "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.415247, 37.805334 ] } } +, +{ "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.801019 ] } } +, +{ "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.800214 ] } } +, +{ "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.419163, 37.800180 ] } } +, +{ "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.419142, 37.799188 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798349 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798315 ] } } +, +{ "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.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417554, 37.799451 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799332 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.799696 ] } } +, +{ "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.414957, 37.804384 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.803418 ] } } +, +{ "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.802604 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.802689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801934 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412661, 37.802096 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411889, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802774 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802952 ] } } +, +{ "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.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409700, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414228, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414035, 37.799900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.800909 ] } } +, +{ "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.412575, 37.799959 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412361, 37.799027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412211, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410365, 37.800502 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410644, 37.800205 ] } } +, +{ "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.800417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412018, 37.797357 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.797212 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420043, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419871, 37.795330 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418584, 37.796500 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.796348 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.795381 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795551 ] } } +, +{ "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.794610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418004, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794415 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419807, 37.793414 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.794550 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418047, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.795763 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 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": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416288, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791727 ] } } +, +{ "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.420547, 37.790667 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790871 ] } } +, +{ "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.789675 ] } } +, +{ "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.420536, 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.417639, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791023 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.792066 ] } } +, +{ "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.415751, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790176 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416588, 37.789158 ] } } +, +{ "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.415301, 37.789226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795966 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795797 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414850, 37.795042 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.796000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413208, 37.795263 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414700, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414625, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794262 ] } } +, +{ "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.411824, 37.796212 ] } } +, +{ "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.411524, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411674, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410001, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.794635 ] } } +, +{ "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.411535, 37.794449 ] } } +, +{ "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.793660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793796 ] } } +, +{ "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.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412618, 37.791549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789446 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.788327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413627, 37.788649 ] } } +, +{ "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.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410988, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410322, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808241 ] } } +, +{ "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.407908, 37.807351 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406288, 37.806953 ] } } +, +{ "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.405441, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803503 ] } } +, +{ "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.409507, 37.802214 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803706 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803011 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802994 ] } } +, +{ "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.802613 ] } } +, +{ "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.405741, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405688, 37.801773 ] } } +, +{ "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.409056, 37.799281 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.799222 ] } } +, +{ "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.800688 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797196 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797857 ] } } +, +{ "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.800917 ] } } +, +{ "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.404475, 37.801095 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798128 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796992 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405752, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797060 ] } } +, +{ "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.403778, 37.805198 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.805147 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803935 ] } } +, +{ "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.402029, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 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.399379, 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.797399 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797552 ] } } +, +{ "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.398928, 37.800612 ] } } +, +{ "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.796865 ] } } +, +{ "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.408327, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.794644 ] } } +, +{ "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.409636, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793050 ] } } +, +{ "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.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.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407597, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796127 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404314, 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.405977, 37.794271 ] } } +, +{ "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.405967, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404422, 37.794483 ] } } +, +{ "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.404282, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792600 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792075 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.791956 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409303, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791100 ] } } +, +{ "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.408649, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 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.408305, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406932, 37.789599 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407941, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.792380 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405999, 37.788556 ] } } +, +{ "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.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795737 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402780, 37.794686 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793787 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792770 ] } } +, +{ "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.401557, 37.794033 ] } } +, +{ "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.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.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400291, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.793313 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400109, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399819, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398928, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403982, 37.791007 ] } } +, +{ "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.402126, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789752 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.788209 ] } } +, +{ "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": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.788497 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402169, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792295 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791074 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790303 ] } } +, +{ "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.399776, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.791320 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.791117 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790947 ] } } +, +{ "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.401235, 37.789260 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789073 ] } } +, +{ "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.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798976 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397877, 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.798908 ] } } +, +{ "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.396160, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 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.397619, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397705, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398649, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398521, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397759, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397727, 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.396804, 37.793533 ] } } +, +{ "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.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.792990 ] } } +, +{ "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.396600, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793194 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396182, 37.793474 ] } } +, +{ "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.795008 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.795110 ] } } +, +{ "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.393779, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793737 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 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.394927, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394916, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794432 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394272, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794228 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393457, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.793770 ] } } +, +{ "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.393457, 37.793906 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792668 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393414, 37.793465 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793211 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793007 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791651 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 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.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396053, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791515 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.791990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.791837 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394358, 37.792397 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393585, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790608 ] } } +, +{ "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.393328, 37.790608 ] } } +, +{ "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.395935, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.789192 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789938 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394294, 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.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792694 ] } } +, +{ "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.392416, 37.791346 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392566, 37.791176 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391236, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391107, 37.792346 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391075, 37.792160 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391869, 37.789277 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393092, 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.390206, 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.389702, 37.790489 ] } } +, +{ "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.388543, 37.789684 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom 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.787835 ] } } +, +{ "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.421845, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.787802 ] } } +, +{ "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.787657 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787886 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787471 ] } } +, +{ "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.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787530 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.787429 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787963 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387813, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752555 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387727, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742731 ] } } +, +{ "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.742629 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388157, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } +, +{ "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.387577, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } +, +{ "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.746065 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386655, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387159, 37.741408 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386419, 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.383940, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742545 ] } } +, +{ "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.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383178, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741136 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384444, 37.741068 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384509, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386547, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386290, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385882, 37.736606 ] } } +, +{ "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.382642, 37.739864 ] } } +, +{ "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.384166, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381011, 37.738625 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380807, 37.738778 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737081 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379509, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379262, 37.737675 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 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.387373, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387320, 37.731854 ] } } +, +{ "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.386644, 37.732584 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386612, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385989, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733203 ] } } +, +{ "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.383060, 37.734696 ] } } +, +{ "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.384799, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383329, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383093, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386569, 37.729563 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385153, 37.730802 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729537 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383586, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730157 ] } } +, +{ "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.728375 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382739, 37.729427 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379477, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734179 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379531, 37.734026 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382127, 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.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733305 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379917, 37.732499 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379702, 37.732397 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735172 ] } } +, +{ "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.379348, 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.377235, 37.732923 ] } } +, +{ "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.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381408, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380346, 37.730581 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381376, 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.380196, 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.377020, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377117, 37.730047 ] } } +, +{ "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.386773, 37.726118 ] } } +, +{ "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.731998 ] } } +, +{ "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.730938 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374488, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373769, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371881, 37.729885 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373136, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370207, 37.729139 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729257 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368716, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725337 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728765 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365197, 37.728596 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365454, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727357 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387985, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388328, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 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": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.758018 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755066 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755320 ] } } +, +{ "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.386837, 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.383060, 37.755643 ] } } +, +{ "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": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.789684 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371806, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371441, 37.816226 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367804, 37.821946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366431, 37.819946 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366334, 37.820006 ] } } +, +{ "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.371141, 37.813064 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370905, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370862, 37.813149 ] } } +, +{ "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.811810 ] } } +, +{ "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.812005 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811869 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811700 ] } } +, +{ "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.363373, 37.810513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828184 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826955 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375261, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829828 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376312, 37.825472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375647, 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.374992, 37.823252 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374295, 37.823404 ] } } +, +{ "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.371463, 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.825201 ] } } +, +{ "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.823633 ] } } +, +{ "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.367976, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 3817, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni" }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.820006 ] } } +] } +] } +] } diff --git a/tile.cc b/tile.cc index 3f8a516..c68adeb 100644 --- a/tile.cc +++ b/tile.cc @@ -563,6 +563,38 @@ void *partial_feature_worker(void *v) { return NULL; } +int manage_gap(unsigned long long index, unsigned long long *previndex, double scale, double gamma, double *gap) { + if (gamma > 0) { + if (*gap > 0) { + if (index == *previndex) { + return 1; // Exact duplicate: can't fulfil the gap requirement + } + + if (exp(log((index - *previndex) / scale) * gamma) >= *gap) { + // Dot is further from the previous than the nth root of the gap, + // so produce it, and choose a new gap at the next point. + *gap = 0; + } else { + return 1; + } + } else { + *gap = (index - *previndex) / scale; + + if (*gap == 0) { + return 1; // Exact duplicate: skip + } else if (*gap < 1) { + return 1; // Narrow dot spacing: need to stretch out + } else { + *gap = 0; // Wider spacing than minimum: so pass through unchanged + } + } + + *previndex = index; + } + + return 0; +} + long long write_tile(char **geoms, char *metabase, char *stringpool, int z, unsigned tx, unsigned ty, int detail, int min_detail, int basezoom, struct pool **file_keys, char **layernames, sqlite3 *outdb, double droprate, int buffer, const char *fname, FILE **geomfile, int minzoom, int maxzoom, double todo, char *geomstart, volatile long long *along, double gamma, int nlayers, char *prevent, char *additional, int child_shards, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, volatile int *running) { int line_detail; double fraction = 1; @@ -767,32 +799,10 @@ long long write_tile(char **geoms, char *metabase, char *stringpool, int z, unsi } if (gamma > 0) { - unsigned long long index = encode(bbox[0] / 2 + bbox[2] / 2, bbox[1] / 2 + bbox[3] / 2); - if (gap > 0) { - if (index == previndex) { - continue; // Exact duplicate: can't fulfil the gap requirement - } - - if (exp(log((index - previndex) / scale) * gamma) >= gap) { - // Dot is further from the previous than the nth root of the gap, - // so produce it, and choose a new gap at the next point. - gap = 0; - } else { - continue; - } - } else { - gap = (index - previndex) / scale; - - if (gap == 0) { - continue; // Exact duplicate: skip - } else if (gap < 1) { - continue; // Narrow dot spacing: need to stretch out - } else { - gap = 0; // Wider spacing than minimum: so pass through unchanged - } + unsigned long long index = index = encode(bbox[0] / 2 + bbox[2] / 2, bbox[1] / 2 + bbox[3] / 2); + if (manage_gap(index, &previndex, scale, gamma, &gap)) { + continue; } - - previndex = index; } } diff --git a/tile.h b/tile.h index f12a2d7..3a4db27 100644 --- a/tile.h +++ b/tile.h @@ -29,6 +29,8 @@ long long write_tile(char **geom, char *metabase, char *stringpool, unsigned *fi int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, struct pool **file_keys, unsigned *midx, unsigned *midy, char **layernames, int maxzoom, int minzoom, int basezoom, sqlite3 *outdb, double droprate, int buffer, const char *fname, const char *tmpdir, double gamma, int nlayers, char *prevent, char *additional, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y); +int manage_gap(unsigned long long index, unsigned long long *previndex, double scale, double gamma, double *gap); + extern unsigned initial_x, initial_y; extern int geometry_scale; extern int quiet;